/[PAMELA software]/quicklook/OrbitalRate/inc/tabDump/TabDumpRecord.h
ViewVC logotype

Contents of /quicklook/OrbitalRate/inc/tabDump/TabDumpRecord.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (show annotations) (download)
Tue Dec 5 19:49:18 2006 UTC (18 years ago) by pam-rm2
Branch: MAIN
CVS Tags: v2r02, v2r01, v2r00, HEAD
File MIME type: text/plain
New version of OrbitalRate quicklook.  Initial import.
Nico

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

  ViewVC Help
Powered by ViewVC 1.1.23