Parent Directory
|
Revision Log
Stable version 4.0 - 6 March 2005 - Maurizio Nagni
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 | * ArrDumpBlock data Wrapper |
11 | */ |
12 | class ArrDumpRecord: public TObject { |
13 | private: |
14 | |
15 | public: |
16 | /** |
17 | * Get the run name according to a certain run number. |
18 | * @param run Run number. |
19 | * @return a string with the run name. |
20 | */ |
21 | |
22 | UINT8 Arr_ID; |
23 | UINT16 Arr_len; |
24 | TArrayI *Data; |
25 | ArrDumpRecord(void); |
26 | ~ArrDumpRecord(void){}; |
27 | |
28 | ClassDef(ArrDumpRecord, 1) |
29 | }; |
30 | } |
31 | |
32 | #endif /* ARRDUMP_RECORD_H */ |
33 |
ViewVC Help | |
Powered by ViewVC 1.1.23 |