/[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.4 - (show annotations) (download)
Sat May 28 10:44:09 2005 UTC (19 years, 9 months ago) by kusanagi
Branch: MAIN
Changes since 4.1: +0 -0 lines
File MIME type: text/plain
Main features of this release are:
- updated classes documentations;
- major changes on the calibration fortran routine for the calorimeter
- update on the TMTC thermistors
- removed old classes as CalibTrkBoth and CalibTrd

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