/[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.5 - (show annotations) (download)
Mon Aug 29 08:27:23 2005 UTC (19 years, 6 months ago) by kusanagi
Branch: MAIN
Changes since 4.4: +1 -2 lines
File MIME type: text/plain
Update *.h files. Now includes have a relative path.
That is
From -----> xxx/name.h
to      -----> ../name.h

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