Parent Directory
|
Revision Log
Major update on the documentation
1 | |
2 | #ifndef ARRDUMP_RECORD_H |
3 | #define ARRDUMP_RECORD_H |
4 | |
5 | #include <TArrayI.h> |
6 | #include "event/SubPacket.h" |
7 | |
8 | namespace pamela { |
9 | /** |
10 | * ArrDumpRecord data Wrapper. |
11 | * |
12 | * Each ArrDumpRecord is a PAMELA CPU software array of parameters. |
13 | */ |
14 | class ArrDumpRecord: public TObject { |
15 | private: |
16 | |
17 | public: |
18 | /** |
19 | * The array ID. |
20 | */ |
21 | UINT8 Arr_ID; |
22 | |
23 | /** |
24 | * The array length expressed in dwords (32-bit). |
25 | */ |
26 | UINT16 Arr_len; |
27 | |
28 | /** |
29 | * An array of Integers containing the values of the array. |
30 | */ |
31 | TArrayI *Data; |
32 | ArrDumpRecord(void); |
33 | ~ArrDumpRecord(void){}; |
34 | |
35 | ClassDef(ArrDumpRecord, 1) |
36 | }; |
37 | } |
38 | |
39 | #endif /* ARRDUMP_RECORD_H */ |
40 |
ViewVC Help | |
Powered by ViewVC 1.1.23 |