1 |
|
2 |
#ifndef TABDUMP_RECORD_H |
3 |
#define TABDUMP_RECORD_H |
4 |
#include <TArrayI.h> |
5 |
#include "../SubPacket.h" |
6 |
|
7 |
namespace pamela { |
8 |
/** |
9 |
* TabDumpBlock data Wrapper |
10 |
* |
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 |
*/ |
15 |
class TabDumpRecord: public TObject { |
16 |
private: |
17 |
|
18 |
public: |
19 |
/** |
20 |
* The table ID. |
21 |
*/ |
22 |
UINT8 Tab_ID; |
23 |
|
24 |
/** |
25 |
* The table's number of rows. |
26 |
*/ |
27 |
UINT8 Nrow; |
28 |
|
29 |
/** |
30 |
* The table's number of columns. |
31 |
*/ |
32 |
UINT8 Ncol; |
33 |
|
34 |
/** |
35 |
* An array of Integers containing the values of the table. |
36 |
*/ |
37 |
TArrayI *Data; |
38 |
|
39 |
TabDumpRecord(void); |
40 |
~TabDumpRecord(void){}; |
41 |
ClassDef(TabDumpRecord, 1) |
42 |
}; |
43 |
} |
44 |
|
45 |
#endif /* TABDUMP_RECORD_H */ |
46 |
|