1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/techmodel/TechmodelPamelaRun.cpp,v $ |
* $Source: /home/cvsmanager/yoda/techmodel/TechmodelPamelaRun.cpp,v $ |
3 |
* $Id: TechmodelPamelaRun.cpp,v 4.0 2005/03/06 04:33:02 kusanagi Exp $ |
* $Id: TechmodelPamelaRun.cpp,v 5.0 2005/08/29 09:46:13 Maurizio Nagni Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: Maurizio Nagni $ |
5 |
* |
* |
6 |
* Implementation of the TechmodelPamelaRun class. |
* Implementation of the TechmodelPamelaRun class. |
7 |
*/ |
*/ |
|
#include <string> |
|
|
#include <exception> |
|
|
#include <iostream> |
|
|
#include <fstream> |
|
|
#include <log4cxx/logger.h> |
|
8 |
|
|
9 |
|
|
10 |
|
#include <log4cxx/logger.h> |
11 |
#include "TechmodelPamelaRun.h" |
#include "TechmodelPamelaRun.h" |
12 |
|
|
13 |
using namespace pamela; |
using namespace pamela; |
21 |
* techmodel data files into the ROOT TTrees. |
* techmodel data files into the ROOT TTrees. |
22 |
* @param run Run number |
* @param run Run number |
23 |
*/ |
*/ |
24 |
TechmodelPamelaRun::TechmodelPamelaRun(std::string fileName, std::string path) : |
TechmodelPamelaRun::TechmodelPamelaRun(std::string fileName, std::string path, bool multiFile, short compression) : |
25 |
PamelaRun(fileName, path) { |
PamelaRun(fileName, path, multiFile, compression) { |
26 |
InputFile = new ifstream(fileName.c_str(), std::ios::binary); //inserito ios::binary maurizio 01/03/2004 |
InputFile = new ifstream(fileName.c_str(), std::ios::binary); //inserito ios::binary maurizio 01/03/2004 |
27 |
if (!*InputFile){ |
if (!*InputFile){ |
28 |
std::stringstream oss; |
std::stringstream oss; |