| 1 |
/** @file |
/** @file |
| 2 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
| 3 |
* $Date: 2004/07/06 12:20:23 $ |
* $Date: 2006/04/05 07:30:54 $ |
| 4 |
* $Revision: 1.1.1.1 $ |
* $Revision: 6.1 $ |
| 5 |
* |
* |
| 6 |
* Header file for the algorithms used to read the techmodel data file. |
* Header file for the algorithms used to read the techmodel data file. |
| 7 |
*/ |
*/ |
| 34 |
* The Run that is processed. |
* The Run that is processed. |
| 35 |
*/ |
*/ |
| 36 |
TechmodelPamelaRun *Run; //! |
TechmodelPamelaRun *Run; //! |
| 37 |
int UnpackPscuHeader(void) throw (std::exception); |
void UnpackPscuHeader(void) throw (WrongCRCHeaderException, LengthException, BackwardCounterException); |
| 38 |
|
void UnpackPscuHeader(unsigned char*) throw (WrongCRCHeaderException, LengthException, BackwardCounterException); |
| 39 |
void UnpackPscuTrailer(void) throw (std::exception); |
void UnpackPscuTrailer(void) throw (std::exception); |
| 40 |
|
|
| 41 |
|
/** |
| 42 |
|
maxPackets define the maximum number of packets |
| 43 |
|
the user wants to get from the raw file. |
| 44 |
|
By default is initialized to -1 (no limit) |
| 45 |
|
*/ |
| 46 |
|
static unsigned int maxPackets; |
| 47 |
|
|
| 48 |
|
/** |
| 49 |
|
prevPckCounter and prevPckOBT are used to check the |
| 50 |
|
integrity of the raw file stream |
| 51 |
|
*/ |
| 52 |
static unsigned int prevPckCounter; |
static unsigned int prevPckCounter; |
| 53 |
static unsigned int prevPckOBT; |
static unsigned int prevPckOBT; |
| 54 |
public: |
std::stringstream oss; |
| 55 |
EventReader(void); |
ofstream corruptedPacketFile; |
| 56 |
|
public: |
| 57 |
|
//EventReader(void); |
| 58 |
|
EventReader(int); |
| 59 |
virtual void Init(PamelaRun *); |
virtual void Init(PamelaRun *); |
| 60 |
virtual void RunEvent(int); |
virtual void RunEvent(int); |
| 61 |
virtual std::string GetVersionInfo(void) const; |
virtual std::string GetVersionInfo(void) const; |
| 62 |
virtual int FindStart(void) throw (std::exception); |
virtual bool FindStart(unsigned char*, long) throw (std::exception); |
| 63 |
|
int archiveCorruptedPacket(long int, long int); |
| 64 |
ClassDef(EventReader, 1) |
ClassDef(EventReader, 1) |
| 65 |
}; |
}; |
| 66 |
} |
} |