/[PAMELA software]/quicklook/OrbitalRate/inc/arrDump/ArrDumpRecord.h
ViewVC logotype

Annotation of /quicklook/OrbitalRate/inc/arrDump/ArrDumpRecord.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations) (download)
Tue Dec 5 19:49:16 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 pam-rm2 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