1 |
/** @file |
/** @file |
2 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
3 |
* $Date: 2004/07/06 13:31:18 $ |
* $Date: 2004/07/08 12:31:42 $ |
4 |
* $Revision: 1.2 $ |
* $Revision: 1.4 $ |
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 |
*/ |
*/ |
12 |
#include "TechmodelAlgorithm.h" |
#include "TechmodelAlgorithm.h" |
13 |
#include "PscuEvent.h" |
#include "PscuEvent.h" |
14 |
|
|
15 |
#include "VarDumpEvent.h" |
#include "varDump/VarDumpEvent.h" |
16 |
#include "ArrDumpEvent.h" |
#include "arrDump/ArrDumpEvent.h" |
17 |
#include "TabDumpEvent.h" |
#include "tabDump/TabDumpEvent.h" |
18 |
|
|
19 |
#include "CalibCalEvent.h" |
#include "CalibCalEvent.h" |
20 |
#include "CalibCalPedEvent.h" |
#include "CalibCalPedEvent.h" |
21 |
|
#include "CalibAcEvent.h" |
22 |
#include "CalibTrk1Event.h" |
#include "CalibTrk1Event.h" |
23 |
#include "CalibTrk2Event.h" |
#include "CalibTrk2Event.h" |
24 |
#include "CalibTrdEvent.h" |
#include "CalibTrdEvent.h" |
32 |
#include "log/LogEvent.h" |
#include "log/LogEvent.h" |
33 |
|
|
34 |
#include "physics/TrackerReader.h" |
#include "physics/TrackerReader.h" |
35 |
|
#include "physics/AnticounterReader.h" |
36 |
|
#include "physics/CalorimeterReader.h" |
37 |
|
|
38 |
#define UINT32 unsigned int |
#define UINT32 unsigned int |
39 |
#define UINT16 unsigned short |
#define UINT16 unsigned short |
49 |
class PhysicsReader: public TechmodelAlgorithm { |
class PhysicsReader: public TechmodelAlgorithm { |
50 |
private: |
private: |
51 |
/** The reader for tracker physics events. */ |
/** The reader for tracker physics events. */ |
52 |
tracker::TrackerReader* trackerReader; |
tracker::TrackerReader* trackerReader; |
53 |
/** The reader for anticoincidence physics events. */ |
anticounter::AnticounterReader* anticounterReader; |
54 |
//anticoinc::AnticounterReader* AcReader; |
calorimeter::CalorimeterReader* calorimeterReader; |
|
/** The reader for calorimeter physics events. */ |
|
|
//calorimeter::CalorimeterReader* CalorimeterReader; |
|
55 |
public: |
public: |
56 |
PhysicsReader(void); |
PhysicsReader(void); |
57 |
virtual void Init(PamelaRun *); |
virtual void Init(PamelaRun *); |
200 |
class CalibCalPedReader: public TechmodelAlgorithm { |
class CalibCalPedReader: public TechmodelAlgorithm { |
201 |
private: |
private: |
202 |
/** The CalibCalPed event that is created in the reader. */ |
/** The CalibCalPed event that is created in the reader. */ |
203 |
CalibCalPedEvent* CalibCalPed; |
CalibCalPedEvent* calibCalPed; |
204 |
public: |
public: |
205 |
CalibCalPedReader(void); |
CalibCalPedReader(void); |
206 |
virtual void Init(PamelaRun *); |
virtual void Init(PamelaRun *); |
325 |
virtual std::string GetVersionInfo(void) const; |
virtual std::string GetVersionInfo(void) const; |
326 |
}; |
}; |
327 |
|
|
328 |
|
/** |
329 |
|
* Event reader algorithm for ForcedPkt events. |
330 |
|
*/ |
331 |
|
class CalibAcReader: public TechmodelAlgorithm { |
332 |
|
private: |
333 |
|
/** The CalibAc event that is created in the reader. */ |
334 |
|
CalibAcEvent* CalibAc; |
335 |
|
public: |
336 |
|
CalibAcReader(void); |
337 |
|
virtual void Init(PamelaRun *); |
338 |
|
virtual void RunEvent(int, long int); |
339 |
|
virtual std::string GetVersionInfo(void) const; |
340 |
|
}; |
341 |
} |
} |
342 |
} |
} |
343 |
|
|