/[PAMELA software]/yoda/event/tabDump/TabDumpRecord.h
ViewVC logotype

Contents of /yoda/event/tabDump/TabDumpRecord.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4.1 - (show annotations) (download)
Sat May 7 08:49:07 2005 UTC (19 years, 9 months ago) by kusanagi
Branch: MAIN
CVS Tags: yodaPreTermistors2_1/00, YODA4_3/02, YODA4_3/00, YODA4_3/01, YODA4_2/03, yodaPreTermistores2_0/00
Branch point for: PreThermistores2
Changes since 4.0: +17 -4 lines
File MIME type: text/plain
Major update on the documentation

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

  ViewVC Help
Powered by ViewVC 1.1.23