Parent Directory | Revision Log
Error proof version. Implemented all detectors packets plus all the main telemetries packets. Missing all the Init and Alarm packets. Disabled CRC control on VarDump, ArrDump, TabDump for CPU debugging needs (the data formats seems correct even if CRC get wrong)
1 | kusanagi | 1.1 | /** @file |
2 | kusanagi | 1.2 | * $Author: kusanagi $ |
3 | kusanagi | 3.0 | * $Date: 2004/09/21 20:51:22 $ |
4 | * $Revision: 2.0 $ | ||
5 | kusanagi | 1.1 | * |
6 | * Header file for the algorithms used to read the techmodel tracker events. | ||
7 | */ | ||
8 | |||
9 | #ifndef TRACKER_READER_H | ||
10 | #define TRACKER_READER_H | ||
11 | |||
12 | #include "techmodel/TechmodelAlgorithm.h" | ||
13 | #include "event/PamelaRun.h" | ||
14 | #include "event/physics/tracker/TrackerEvent.h" | ||
15 | |||
16 | |||
17 | namespace pamela { | ||
18 | namespace tracker { | ||
19 | /** | ||
20 | * Algorithm to read techmodel tracker physics events. | ||
21 | */ | ||
22 | class TrackerReader: public pamela::techmodel::TechmodelAlgorithm { | ||
23 | kusanagi | 1.2 | |
24 | kusanagi | 1.1 | private: |
25 | /** | ||
26 | * The physics event that is created in this algorithm. | ||
27 | */ | ||
28 | TrackerEvent* tracker; | ||
29 | public: | ||
30 | TrackerReader(void); | ||
31 | virtual void Init(PamelaRun *); | ||
32 | virtual void RunEvent(int); | ||
33 | virtual void RunEvent(int, const char[] , long int); | ||
34 | virtual std::string GetVersionInfo(void) const; | ||
35 | }; | ||
36 | } | ||
37 | } | ||
38 | |||
39 | #endif /* TRACKER_READER_H */ |
ViewVC Help | |
Powered by ViewVC 1.1.23 |