| 1 |
/** @file |
/** @file |
| 2 |
* $Author: kusanagi $ |
* $Author: Maurizio Nagni $ |
| 3 |
* $Date: 2005/05/28 10:44:11 $ |
* $Date: 2005/08/29 09:46:13 $ |
| 4 |
* $Revision: 4.4 $ |
* $Revision: 5.0 $ |
| 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 |
*/ |
*/ |
| 38 |
#include "CalibTrailerEvent.h" |
#include "CalibTrailerEvent.h" |
| 39 |
#include "InitHeaderEvent.h" |
#include "InitHeaderEvent.h" |
| 40 |
#include "InitTrailerEvent.h" |
#include "InitTrailerEvent.h" |
|
#include "EventTrkEvent.h" |
|
|
#include "TestTrkEvent.h" |
|
|
#include "TestTofEvent.h" |
|
| 41 |
#include "log/LogEvent.h" |
#include "log/LogEvent.h" |
| 42 |
#include "varDump/VarDumpEvent.h" |
#include "varDump/VarDumpEvent.h" |
| 43 |
#include "arrDump/ArrDumpEvent.h" |
#include "arrDump/ArrDumpEvent.h" |
| 61 |
#include "TrgAlarmEvent.h" |
#include "TrgAlarmEvent.h" |
| 62 |
#include "TofAlarmEvent.h" |
#include "TofAlarmEvent.h" |
| 63 |
#include "S4AlarmEvent.h" |
#include "S4AlarmEvent.h" |
| 64 |
|
#include <fstream> |
| 65 |
|
#include <log4cxx/logger.h> |
| 66 |
|
|
| 67 |
|
extern "C" { |
| 68 |
|
#include "CRC.h" |
| 69 |
|
} |
| 70 |
|
|
| 71 |
using namespace std; |
using namespace std; |
| 72 |
|
|
| 73 |
namespace pamela { |
namespace pamela { |
| 74 |
namespace techmodel { |
namespace techmodel { |
| 75 |
|
|
| 76 |
/********************************************** |
/** |
| 77 |
* Event reader algorithm for PhysEndRun events. |
Event reader algorithm for PhysEndRun events. |
| 78 |
**********************************************/ |
* |
| 79 |
|
*/ |
| 80 |
class PhysEndRunReader: public TechmodelAlgorithm { |
class PhysEndRunReader: public TechmodelAlgorithm { |
| 81 |
private: |
private: |
| 82 |
/** The PhysEndRun event that is created in the reader. */ |
/** The PhysEndRun event that is created in the reader. */ |
| 83 |
PhysEndRunEvent* physEndRun; |
PhysEndRunEvent* physEndRun; |
| 84 |
public: |
public: |
| 85 |
|
/** |
| 86 |
|
* Constructor |
| 87 |
|
* @param |
| 88 |
|
* @return |
| 89 |
|
*/ |
| 90 |
PhysEndRunReader(void); |
PhysEndRunReader(void); |
| 91 |
virtual void Init(PamelaRun *); |
virtual void Init(PamelaRun *); |
| 92 |
virtual void RunEvent(int, long int) throw (WrongCRCException); |
virtual void RunEvent(int, long int) throw (WrongCRCException); |
| 381 |
|
|
| 382 |
|
|
| 383 |
/********************************************** |
/********************************************** |
|
* Event reader algorithm for EventTrk events. |
|
|
**********************************************/ |
|
|
class EventTrkReader: public TechmodelAlgorithm { |
|
|
private: |
|
|
/** The EventTrk event that is created in the reader. */ |
|
|
EventTrkEvent* eventTrk; |
|
|
public: |
|
|
EventTrkReader(void); |
|
|
virtual void Init(PamelaRun *); |
|
|
virtual void RunEvent(int, long int) throw (Exception); |
|
|
virtual std::string GetVersionInfo(void) const; |
|
|
}; |
|
|
|
|
|
|
|
|
/********************************************** |
|
|
* Event reader algorithm for TestTrk events. |
|
|
**********************************************/ |
|
|
class TestTrkReader: public TechmodelAlgorithm { |
|
|
private: |
|
|
/** The TestTrk event that is created in the reader. */ |
|
|
TestTrkEvent* testTrk; |
|
|
public: |
|
|
TestTrkReader(void); |
|
|
virtual void Init(PamelaRun *); |
|
|
virtual void RunEvent(int, long int) throw (Exception); |
|
|
virtual std::string GetVersionInfo(void) const; |
|
|
}; |
|
|
|
|
|
/********************************************** |
|
|
* Event reader algorithm for TestTof events. |
|
|
**********************************************/ |
|
|
class TestTofReader: public TechmodelAlgorithm { |
|
|
private: |
|
|
/** The TestTof event that is created in the reader. */ |
|
|
TestTofEvent* testTof; |
|
|
public: |
|
|
TestTofReader(void); |
|
|
virtual void Init(PamelaRun *); |
|
|
virtual void RunEvent(int, long int) throw (Exception); |
|
|
virtual std::string GetVersionInfo(void) const; |
|
|
}; |
|
|
|
|
|
/********************************************** |
|
| 384 |
* Event reader algorithm for Log events. |
* Event reader algorithm for Log events. |
| 385 |
**********************************************/ |
**********************************************/ |
| 386 |
class LogReader: public TechmodelAlgorithm { |
class LogReader: public TechmodelAlgorithm { |