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

Contents of /yoda/event/arrDump/ArrDumpRecord.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4.1 - (show annotations) (download)
Sat May 7 08:48:44 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: +14 -7 lines
File MIME type: text/plain
Major update on the documentation

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

  ViewVC Help
Powered by ViewVC 1.1.23