| 1 |
/** @file |
/** @file |
| 2 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
| 3 |
* $Date: 2004/12/09 08:48:41 $ |
* $Date: 2006/02/15 15:47:14 $ |
| 4 |
* $Revision: 2.3 $ |
* $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 |
*/ |
*/ |
| 13 |
#include "PscuEvent.h" |
#include "PscuEvent.h" |
| 14 |
|
|
| 15 |
|
|
| 16 |
#include "PhysEndRunEvent.h" |
#include "endrun/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" |
| 21 |
#include "physics/CalorimeterReader.h" |
#include "physics/CalorimeterReader.h" |
| 22 |
#include "physics/NeutronDetectorReader.h" |
#include "physics/NeutronDetectorReader.h" |
| 23 |
#include "physics/S4Reader.h" |
#include "physics/S4Reader.h" |
| 24 |
#include "CalibTrkBothEvent.h" |
#include "physics/TofReader.h" |
| 25 |
|
#include "physics/TriggerReader.h" |
| 26 |
#include "CalibTrk1Event.h" |
#include "CalibTrk1Event.h" |
| 27 |
#include "CalibTrk2Event.h" |
#include "CalibTrk2Event.h" |
|
#include "CalibTrdEvent.h" |
|
| 28 |
#include "CalibTofEvent.h" |
#include "CalibTofEvent.h" |
| 29 |
#include "CalibS4Event.h" |
#include "CalibS4Event.h" |
| 30 |
#include "CalibCalPedEvent.h" |
#include "CalibCalPedEvent.h" |
| 39 |
#include "InitHeaderEvent.h" |
#include "InitHeaderEvent.h" |
| 40 |
#include "InitTrailerEvent.h" |
#include "InitTrailerEvent.h" |
| 41 |
#include "EventTrkEvent.h" |
#include "EventTrkEvent.h" |
|
#include "TestTrkEvent.h" |
|
|
#include "TestTofEvent.h" |
|
| 42 |
#include "log/LogEvent.h" |
#include "log/LogEvent.h" |
| 43 |
#include "varDump/VarDumpEvent.h" |
#include "varDump/VarDumpEvent.h" |
| 44 |
#include "arrDump/ArrDumpEvent.h" |
#include "arrDump/ArrDumpEvent.h" |
| 45 |
#include "tabDump/TabDumpEvent.h" |
#include "tabDump/TabDumpEvent.h" |
| 46 |
|
#include "tsbt/TsbTEvent.h" |
| 47 |
|
#include "tsbb/TsbBEvent.h" |
| 48 |
#include "tmtc/TmtcEvent.h" |
#include "tmtc/TmtcEvent.h" |
| 49 |
#include "mcmd/McmdEvent.h" |
#include "mcmd/McmdEvent.h" |
| 50 |
#include "ForcedFECmdEvent.h" |
#include "ForcedFECmdEvent.h" |
| 62 |
#include "TrgAlarmEvent.h" |
#include "TrgAlarmEvent.h" |
| 63 |
#include "TofAlarmEvent.h" |
#include "TofAlarmEvent.h" |
| 64 |
#include "S4AlarmEvent.h" |
#include "S4AlarmEvent.h" |
| 65 |
|
#include <fstream> |
| 66 |
|
#include <log4cxx/logger.h> |
| 67 |
|
|
| 68 |
|
extern "C" { |
| 69 |
|
#include "CRC.h" |
| 70 |
|
} |
| 71 |
|
|
| 72 |
using namespace std; |
using namespace std; |
| 73 |
|
|
| 74 |
namespace pamela { |
namespace pamela { |
| 75 |
namespace techmodel { |
namespace techmodel { |
| 76 |
|
|
| 77 |
/********************************************** |
/** |
| 78 |
* Event reader algorithm for PhysEndRun events. |
Event reader algorithm for PhysEndRun events. |
| 79 |
**********************************************/ |
* |
| 80 |
|
*/ |
| 81 |
class PhysEndRunReader: public TechmodelAlgorithm { |
class PhysEndRunReader: public TechmodelAlgorithm { |
| 82 |
private: |
private: |
| 83 |
/** The PhysEndRun event that is created in the reader. */ |
/** The PhysEndRun event that is created in the reader. */ |
| 84 |
PhysEndRunEvent* physEndRun; |
PhysEndRunEvent* physEndRun; |
| 85 |
public: |
public: |
| 86 |
|
/** |
| 87 |
|
* Constructor |
| 88 |
|
* @param |
| 89 |
|
* @return |
| 90 |
|
*/ |
| 91 |
PhysEndRunReader(void); |
PhysEndRunReader(void); |
| 92 |
virtual void Init(PamelaRun *); |
virtual void Init(PamelaRun *); |
| 93 |
virtual void RunEvent(int, long int) throw (WrongCRCException); |
virtual void RunEvent(int, long int) throw (WrongCRCException); |
| 145 |
calorimeter::CalorimeterReader* calorimeterReader; |
calorimeter::CalorimeterReader* calorimeterReader; |
| 146 |
neutron::NeutronDetectorReader* neutronReader; |
neutron::NeutronDetectorReader* neutronReader; |
| 147 |
S4::S4Reader* s4Reader; |
S4::S4Reader* s4Reader; |
| 148 |
|
tof::TofReader* tofReader; |
| 149 |
|
trigger::TriggerReader* triggerReader; |
| 150 |
public: |
public: |
| 151 |
PhysicsReader(void); |
PhysicsReader(void); |
| 152 |
virtual void Init(PamelaRun *); |
virtual void Init(PamelaRun *); |
| 156 |
|
|
| 157 |
|
|
| 158 |
/********************************************** |
/********************************************** |
| 159 |
|
<<<<<<< ReaderAlgorithms.h |
| 160 |
* Event reader algorithm for CalibTrkBoth events. |
* Event reader algorithm for CalibTrkBoth events. |
| 161 |
**********************************************/ |
**********************************************/ |
| 162 |
class CalibTrkBothReader: public TechmodelAlgorithm { |
/* class CalibTrkBothReader: public TechmodelAlgorithm { |
| 163 |
private: |
private: |
| 164 |
/** The CalibTrkBoth event that is created in the reader. */ |
// The CalibTrkBoth event that is created in the reader. |
| 165 |
CalibTrkBothEvent* calibTrkBoth; |
CalibTrkBothEvent* calibTrkBoth; |
| 166 |
public: |
public: |
| 167 |
CalibTrkBothReader(void); |
CalibTrkBothReader(void); |
| 172 |
//virtual void RunEvent(int, long int, char[]); |
//virtual void RunEvent(int, long int, char[]); |
| 173 |
virtual std::string GetVersionInfo(void) const; |
virtual std::string GetVersionInfo(void) const; |
| 174 |
}; |
}; |
| 175 |
|
*/ |
| 176 |
|
|
| 177 |
/********************************************** |
/********************************************** |
| 178 |
|
======= |
| 179 |
|
>>>>>>> 6.1 |
| 180 |
* Event reader algorithm for CalibTrk1 events. |
* Event reader algorithm for CalibTrk1 events. |
| 181 |
**********************************************/ |
**********************************************/ |
| 182 |
class CalibTrk1Reader: public TechmodelAlgorithm { |
class CalibTrk1Reader: public TechmodelAlgorithm { |
| 210 |
|
|
| 211 |
|
|
| 212 |
/********************************************** |
/********************************************** |
|
* Event reader algorithm for CalibTrd events. |
|
|
**********************************************/ |
|
|
class CalibTrdReader: public TechmodelAlgorithm { |
|
|
private: |
|
|
/** The CalibTrd event that is created in the reader. */ |
|
|
CalibTrdEvent* calibTrd; |
|
|
public: |
|
|
CalibTrdReader(void); |
|
|
virtual void Init(PamelaRun *); |
|
|
virtual void RunEvent(int, long int) throw (Exception); |
|
|
virtual std::string GetVersionInfo(void) const; |
|
|
}; |
|
|
|
|
|
|
|
|
/********************************************** |
|
| 213 |
* Event reader algorithm for CalibTof events. |
* Event reader algorithm for CalibTof events. |
| 214 |
**********************************************/ |
**********************************************/ |
| 215 |
class CalibTofReader: public TechmodelAlgorithm { |
class CalibTofReader: public TechmodelAlgorithm { |
| 234 |
public: |
public: |
| 235 |
CalibS4Reader(void); |
CalibS4Reader(void); |
| 236 |
virtual void Init(PamelaRun *); |
virtual void Init(PamelaRun *); |
| 237 |
virtual void RunEvent(int, long int) throw (Exception); |
virtual void RunEvent(int, long int) throw (WrongCRCException); |
| 238 |
virtual std::string GetVersionInfo(void) const; |
virtual std::string GetVersionInfo(void) const; |
| 239 |
}; |
}; |
| 240 |
|
|
| 418 |
|
|
| 419 |
|
|
| 420 |
/********************************************** |
/********************************************** |
|
* 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; |
|
|
}; |
|
|
|
|
|
/********************************************** |
|
| 421 |
* Event reader algorithm for Log events. |
* Event reader algorithm for Log events. |
| 422 |
**********************************************/ |
**********************************************/ |
| 423 |
class LogReader: public TechmodelAlgorithm { |
class LogReader: public TechmodelAlgorithm { |
| 482 |
**********************************************/ |
**********************************************/ |
| 483 |
class TmtcReader: public TechmodelAlgorithm { |
class TmtcReader: public TechmodelAlgorithm { |
| 484 |
//Length in bytes of the subPacket (that is te TmtcRecord excluded subCRC) |
//Length in bytes of the subPacket (that is te TmtcRecord excluded subCRC) |
| 485 |
static const int TMTC_SUB_LENGTH = 57; |
static const int TMTC_SUB_LENGTH = 44; |
| 486 |
//Length in bytes of the subPacketCRC |
//Length in bytes of the subPacketCRC |
| 487 |
static const int TMTC_SUBCRC_LENGTH = 1; |
static const int TMTC_SUBCRC_LENGTH = 1; |
| 488 |
//Length in bytes of the PacketCRC |
//Length in bytes of the PacketCRC |
| 490 |
private: |
private: |
| 491 |
/** The TMTC event that is created in the reader. */ |
/** The TMTC event that is created in the reader. */ |
| 492 |
TmtcEvent* Tmtc; |
TmtcEvent* Tmtc; |
| 493 |
float convert_th(int); |
//float convert_th(int); |
| 494 |
public: |
public: |
| 495 |
TmtcReader(void); |
TmtcReader(void); |
| 496 |
virtual void Init(PamelaRun *); |
virtual void Init(PamelaRun *); |
| 732 |
}; |
}; |
| 733 |
|
|
| 734 |
/********************************************** |
/********************************************** |
| 735 |
|
* Event reader algorithm for TsbT events. |
| 736 |
|
**********************************************/ |
| 737 |
|
class TsbTReader: public TechmodelAlgorithm { |
| 738 |
|
private: |
| 739 |
|
/** The TsbT event that is created in the reader. */ |
| 740 |
|
TsbTEvent* TsbT; |
| 741 |
|
public: |
| 742 |
|
TsbTReader(void); |
| 743 |
|
virtual void Init(PamelaRun *); |
| 744 |
|
virtual void RunEvent(int, long int) throw (WrongCRCException); |
| 745 |
|
virtual std::string GetVersionInfo(void) const; |
| 746 |
|
}; |
| 747 |
|
|
| 748 |
|
/********************************************** |
| 749 |
|
* Event reader algorithm for TsbB events. |
| 750 |
|
**********************************************/ |
| 751 |
|
class TsbBReader: public TechmodelAlgorithm { |
| 752 |
|
private: |
| 753 |
|
/** The TsbB event that is created in the reader. */ |
| 754 |
|
TsbBEvent* TsbB; |
| 755 |
|
public: |
| 756 |
|
TsbBReader(void); |
| 757 |
|
virtual void Init(PamelaRun *); |
| 758 |
|
virtual void RunEvent(int, long int) throw (WrongCRCException); |
| 759 |
|
virtual std::string GetVersionInfo(void) const; |
| 760 |
|
}; |
| 761 |
|
|
| 762 |
|
/********************************************** |
| 763 |
* Event reader algorithm for PSCU events. |
* Event reader algorithm for PSCU events. |
| 764 |
**********************************************/ |
**********************************************/ |
| 765 |
class PscuReader: public TechmodelAlgorithm { |
class PscuReader: public TechmodelAlgorithm { |