| 1 |
/** @file |
/** @file |
| 2 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
| 3 |
* $Date: 2006/02/04 12:37:45 $ |
* $Date: 2006/02/07 17:11:10 $ |
| 4 |
* $Revision: 5.1 $ |
* $Revision: 6.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" |
| 41 |
|
#include "EventTrkEvent.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" |
| 382 |
|
|
| 383 |
|
|
| 384 |
/********************************************** |
/********************************************** |
| 385 |
|
* Event reader algorithm for EventTrk events. |
| 386 |
|
**********************************************/ |
| 387 |
|
class EventTrkReader: public TechmodelAlgorithm { |
| 388 |
|
private: |
| 389 |
|
/** The EventTrk event that is created in the reader. */ |
| 390 |
|
EventTrkEvent* eventTrk; |
| 391 |
|
public: |
| 392 |
|
EventTrkReader(void); |
| 393 |
|
virtual void Init(PamelaRun *); |
| 394 |
|
virtual void RunEvent(int, long int) throw (Exception); |
| 395 |
|
virtual std::string GetVersionInfo(void) const; |
| 396 |
|
}; |
| 397 |
|
|
| 398 |
|
|
| 399 |
|
/********************************************** |
| 400 |
* Event reader algorithm for Log events. |
* Event reader algorithm for Log events. |
| 401 |
**********************************************/ |
**********************************************/ |
| 402 |
class LogReader: public TechmodelAlgorithm { |
class LogReader: public TechmodelAlgorithm { |