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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4.1 - (hide 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 kusanagi 1.1
2     #ifndef TABDUMP_RECORD_H
3     #define TABDUMP_RECORD_H
4 kusanagi 2.1 #include "event/SubPacket.h"
5 kusanagi 1.4 #include <TArrayI.h>
6 kusanagi 1.1
7    
8     namespace pamela {
9     /**
10     * TabDumpBlock data Wrapper
11 kusanagi 4.1 *
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 kusanagi 1.1 */
16     class TabDumpRecord: public TObject {
17     private:
18    
19     public:
20     /**
21 kusanagi 4.1 * The table ID.
22     */
23 kusanagi 1.4 UINT8 Tab_ID;
24 kusanagi 4.1
25     /**
26     * The table's number of rows.
27     */
28 kusanagi 1.4 UINT8 Nrow;
29 kusanagi 4.1
30     /**
31     * The table's number of columns.
32     */
33 kusanagi 1.4 UINT8 Ncol;
34    
35 kusanagi 4.1 /**
36     * An array of Integers containing the values of the table.
37     */
38 kusanagi 1.4 TArrayI *Data;
39 kusanagi 1.1
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