| 13 |
#include "PscuEvent.h" |
#include "PscuEvent.h" |
| 14 |
|
|
| 15 |
|
|
| 16 |
#include "endrun/PhysEndRunEvent.h" |
#include "PhysEndRunEvent.h" |
| 17 |
#include "CalibCalPulse1Event.h" |
#include "CalibCalPulse1Event.h" |
| 18 |
#include "CalibCalPulse2Event.h" |
#include "CalibCalPulse2Event.h" |
| 19 |
#include "physics/TrackerReader.h" |
#include "physics/TrackerReader.h" |
| 64 |
#include "TrgAlarmEvent.h" |
#include "TrgAlarmEvent.h" |
| 65 |
#include "TofAlarmEvent.h" |
#include "TofAlarmEvent.h" |
| 66 |
#include "S4AlarmEvent.h" |
#include "S4AlarmEvent.h" |
|
#include "tsbt/TsbTEvent.h" |
|
|
#include "tsbb/TsbBEvent.h" |
|
| 67 |
|
|
| 68 |
using namespace std; |
using namespace std; |
| 69 |
|
|
| 236 |
public: |
public: |
| 237 |
CalibS4Reader(void); |
CalibS4Reader(void); |
| 238 |
virtual void Init(PamelaRun *); |
virtual void Init(PamelaRun *); |
| 239 |
virtual void RunEvent(int, long int) throw (Exception); |
virtual void RunEvent(int, long int) throw (WrongCRCException); |
| 240 |
virtual std::string GetVersionInfo(void) const; |
virtual std::string GetVersionInfo(void) const; |
| 241 |
}; |
}; |
| 242 |
|
|
| 762 |
}; |
}; |
| 763 |
|
|
| 764 |
/********************************************** |
/********************************************** |
|
* Event reader algorithm for TsbT events. |
|
|
**********************************************/ |
|
|
class TsbTReader: public TechmodelAlgorithm { |
|
|
private: |
|
|
/** The TsbT event that is created in the reader. */ |
|
|
TsbTEvent* TsbT; |
|
|
public: |
|
|
TsbTReader(void); |
|
|
virtual void Init(PamelaRun *); |
|
|
virtual void RunEvent(int, long int) throw (WrongCRCException); |
|
|
virtual std::string GetVersionInfo(void) const; |
|
|
}; |
|
|
|
|
|
/********************************************** |
|
|
* Event reader algorithm for TsbB events. |
|
|
**********************************************/ |
|
|
class TsbBReader: public TechmodelAlgorithm { |
|
|
private: |
|
|
/** The TsbB event that is created in the reader. */ |
|
|
TsbBEvent* TsbB; |
|
|
public: |
|
|
TsbBReader(void); |
|
|
virtual void Init(PamelaRun *); |
|
|
virtual void RunEvent(int, long int) throw (WrongCRCException); |
|
|
virtual std::string GetVersionInfo(void) const; |
|
|
}; |
|
|
|
|
|
/********************************************** |
|
| 765 |
* Event reader algorithm for PSCU events. |
* Event reader algorithm for PSCU events. |
| 766 |
**********************************************/ |
**********************************************/ |
| 767 |
class PscuReader: public TechmodelAlgorithm { |
class PscuReader: public TechmodelAlgorithm { |
| 774 |
virtual void RunEvent(int, long int) throw (WrongCRCException); |
virtual void RunEvent(int, long int) throw (WrongCRCException); |
| 775 |
virtual std::string GetVersionInfo(void) const; |
virtual std::string GetVersionInfo(void) const; |
| 776 |
}; |
}; |
| 777 |
|
|
| 778 |
|
|
| 779 |
} |
} |
| 780 |
} |
} |
| 781 |
|
|