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 | |
2 | #ifndef ARRDUMP_RECORD_H | ||
3 | #define ARRDUMP_RECORD_H | ||
4 | |||
5 | kusanagi | 1.3 | #include <TArrayI.h> |
6 | kusanagi | 2.1 | #include "event/SubPacket.h" |
7 | kusanagi | 1.1 | |
8 | namespace pamela { | ||
9 | /** | ||
10 | * ArrDumpBlock data Wrapper | ||
11 | */ | ||
12 | class ArrDumpRecord: public TObject { | ||
13 | private: | ||
14 | |||
15 | public: | ||
16 | /** | ||
17 | * Get the run name according to a certain run number. | ||
18 | * @param run Run number. | ||
19 | * @return a string with the run name. | ||
20 | */ | ||
21 | |||
22 | kusanagi | 1.3 | UINT8 Arr_ID; |
23 | UINT16 Arr_len; | ||
24 | TArrayI *Data; | ||
25 | kusanagi | 1.1 | ArrDumpRecord(void); |
26 | ~ArrDumpRecord(void){}; | ||
27 | kusanagi | 1.2 | |
28 | kusanagi | 1.1 | ClassDef(ArrDumpRecord, 1) |
29 | }; | ||
30 | } | ||
31 | |||
32 | #endif /* ARRDUMP_RECORD_H */ | ||
33 |
ViewVC Help | |
Powered by ViewVC 1.1.23 |