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