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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1.1.1 - (hide annotations) (download) (vendor branch)
Tue Sep 23 07:20:00 2008 UTC (16 years, 3 months ago) by mocchiut
Branch: v0r00, MAIN
CVS Tags: v1r02, v1r00, v1r01, start, v10RED, v9r00, v9r01, HEAD
Changes since 1.1: +0 -0 lines
File MIME type: text/plain
Imported sources, 23/09/2008

1 mocchiut 1.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