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