/[PAMELA software]/chewbacca/event/arrDump/ArrDumpRecord.h
ViewVC logotype

Annotation of /chewbacca/event/arrDump/ArrDumpRecord.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1.1.1 - (hide annotations) (download) (vendor branch)
Tue Sep 23 07:19:59 2008 UTC (16 years, 2 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 ARRDUMP_RECORD_H
3     #define ARRDUMP_RECORD_H
4    
5     #include <TArrayI.h>
6     #include "../SubPacket.h"
7     namespace pamela {
8     /**
9     * ArrDumpRecord data Wrapper.
10     *
11     * Each ArrDumpRecord is a PAMELA CPU software array of parameters.
12     */
13     class ArrDumpRecord: public TObject {
14     private:
15    
16     public:
17     /**
18     * The array ID.
19     */
20     UINT8 Arr_ID;
21    
22     /**
23     * The array length expressed in dwords (32-bit).
24     */
25     UINT16 Arr_len;
26    
27     /**
28     * An array of Integers containing the values of the array.
29     */
30     TArrayI *Data;
31     ArrDumpRecord(void);
32     ~ArrDumpRecord(void){};
33    
34     ClassDef(ArrDumpRecord, 1)
35     };
36     }
37    
38     #endif /* ARRDUMP_RECORD_H */
39    

  ViewVC Help
Powered by ViewVC 1.1.23