1 |
|
2 |
#ifndef TABDUMP_RECORD_H |
3 |
#define TABDUMP_RECORD_H |
4 |
#include "event/SubPacket.h" |
5 |
#include <TArrayI.h> |
6 |
|
7 |
|
8 |
namespace pamela { |
9 |
/** |
10 |
* TabDumpBlock data Wrapper |
11 |
* |
12 |
* The TabDumpEvent represent the TabDump packet and contain the values |
13 |
* of the PAMELA CPU software's arrays written in Mass Memory between |
14 |
* two storing operations. |
15 |
*/ |
16 |
class TabDumpRecord: public TObject { |
17 |
private: |
18 |
|
19 |
public: |
20 |
/** |
21 |
* The table ID. |
22 |
*/ |
23 |
UINT8 Tab_ID; |
24 |
|
25 |
/** |
26 |
* The table's number of rows. |
27 |
*/ |
28 |
UINT8 Nrow; |
29 |
|
30 |
/** |
31 |
* The table's number of columns. |
32 |
*/ |
33 |
UINT8 Ncol; |
34 |
|
35 |
/** |
36 |
* An array of Integers containing the values of the table. |
37 |
*/ |
38 |
TArrayI *Data; |
39 |
|
40 |
TabDumpRecord(void); |
41 |
~TabDumpRecord(void){}; |
42 |
ClassDef(TabDumpRecord, 1) |
43 |
}; |
44 |
} |
45 |
|
46 |
#endif /* TABDUMP_RECORD_H */ |
47 |
|