Parent Directory | Revision Log
Starting form this version: 1) includes are defined with relative (not absolute) path respect to the YODA aplication 2) RegistryEvent class is foreseen to contain post-unpack data.
1 | kusanagi | 1.1 | |
2 | #ifndef TABDUMP_RECORD_H | ||
3 | #define TABDUMP_RECORD_H | ||
4 | kusanagi | 1.4 | #include <TArrayI.h> |
5 | kusanagi | 4.5 | #include "../SubPacket.h" |
6 | kusanagi | 1.1 | |
7 | namespace pamela { | ||
8 | /** | ||
9 | * TabDumpBlock data Wrapper | ||
10 | kusanagi | 4.1 | * |
11 | * The TabDumpEvent represent the TabDump packet and contain the values | ||
12 | * of the PAMELA CPU software's arrays written in Mass Memory between | ||
13 | * two storing operations. | ||
14 | kusanagi | 1.1 | */ |
15 | class TabDumpRecord: public TObject { | ||
16 | private: | ||
17 | |||
18 | public: | ||
19 | /** | ||
20 | kusanagi | 4.1 | * The table ID. |
21 | */ | ||
22 | kusanagi | 1.4 | UINT8 Tab_ID; |
23 | kusanagi | 4.1 | |
24 | /** | ||
25 | * The table's number of rows. | ||
26 | */ | ||
27 | kusanagi | 1.4 | UINT8 Nrow; |
28 | kusanagi | 4.1 | |
29 | /** | ||
30 | * The table's number of columns. | ||
31 | */ | ||
32 | kusanagi | 1.4 | UINT8 Ncol; |
33 | |||
34 | kusanagi | 4.1 | /** |
35 | * An array of Integers containing the values of the table. | ||
36 | */ | ||
37 | kusanagi | 1.4 | TArrayI *Data; |
38 | kusanagi | 1.1 | |
39 | TabDumpRecord(void); | ||
40 | ~TabDumpRecord(void){}; | ||
41 | ClassDef(TabDumpRecord, 1) | ||
42 | }; | ||
43 | } | ||
44 | |||
45 | #endif /* TABDUMP_RECORD_H */ | ||
46 |
ViewVC Help | |
Powered by ViewVC 1.1.23 |