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