Parent Directory
|
Revision Log
Main features of this release are: - updated classes documentations; - major changes on the calibration fortran routine for the calorimeter - update on the TMTC thermistors - removed old classes as CalibTrkBoth and CalibTrd
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 | kusanagi | 4.1 | * ArrDumpRecord data Wrapper. |
11 | * | ||
12 | * Each ArrDumpRecord is a PAMELA CPU software array of parameters. | ||
13 | kusanagi | 1.1 | */ |
14 | class ArrDumpRecord: public TObject { | ||
15 | private: | ||
16 | |||
17 | public: | ||
18 | kusanagi | 4.1 | /** |
19 | * The array ID. | ||
20 | */ | ||
21 | kusanagi | 1.3 | UINT8 Arr_ID; |
22 | kusanagi | 4.1 | |
23 | /** | ||
24 | * The array length expressed in dwords (32-bit). | ||
25 | */ | ||
26 | kusanagi | 1.3 | UINT16 Arr_len; |
27 | kusanagi | 4.1 | |
28 | /** | ||
29 | * An array of Integers containing the values of the array. | ||
30 | */ | ||
31 | kusanagi | 1.3 | TArrayI *Data; |
32 | kusanagi | 1.1 | ArrDumpRecord(void); |
33 | ~ArrDumpRecord(void){}; | ||
34 | kusanagi | 1.2 | |
35 | kusanagi | 1.1 | ClassDef(ArrDumpRecord, 1) |
36 | }; | ||
37 | } | ||
38 | |||
39 | #endif /* ARRDUMP_RECORD_H */ | ||
40 |
ViewVC Help | |
Powered by ViewVC 1.1.23 |