Parent Directory
|
Revision Log
*** empty log message ***
1 | |
2 | #ifndef ARRDUMP_RECORD_H |
3 | #define ARRDUMP_RECORD_H |
4 | #define UINT32 unsigned int |
5 | #define UINT16 unsigned short |
6 | #define UINT8 unsigned char |
7 | |
8 | #include <TObject.h> |
9 | |
10 | |
11 | namespace pamela { |
12 | /** |
13 | * ArrDumpBlock data Wrapper |
14 | */ |
15 | class ArrDumpRecord: public TObject { |
16 | private: |
17 | |
18 | public: |
19 | /** |
20 | * Get the run name according to a certain run number. |
21 | * @param run Run number. |
22 | * @return a string with the run name. |
23 | */ |
24 | |
25 | |
26 | ArrDumpRecord(void); |
27 | ~ArrDumpRecord(void){}; |
28 | ClassDef(ArrDumpRecord, 1) |
29 | }; |
30 | } |
31 | |
32 | #endif /* ARRDUMP_RECORD_H */ |
33 |
ViewVC Help | |
Powered by ViewVC 1.1.23 |