Parent Directory
|
Revision Log
Stable version 4.0 - 6 March 2005 - Maurizio Nagni
| 1 | kusanagi | 1.1 | #ifndef ARRDUMP_EVENT_H |
| 2 | #define ARRDUMP_EVENT_H | ||
| 3 | |||
| 4 | #include "event/arrDump/ArrDumpRecord.h" | ||
| 5 | #include <TClonesArray.h> | ||
| 6 | |||
| 7 | using namespace std; | ||
| 8 | |||
| 9 | namespace pamela { | ||
| 10 | /** | ||
| 11 | * ArrDumpEvent data Wrapper | ||
| 12 | */ | ||
| 13 | class ArrDumpEvent: public pamela::SubPacket { | ||
| 14 | private: | ||
| 15 | static TClonesArray *fgRecords; | ||
| 16 | public: | ||
| 17 | /** | ||
| 18 | * Get the run name according to a certain run number. | ||
| 19 | * @param run Run number. | ||
| 20 | * @return a string with the run name. | ||
| 21 | */ | ||
| 22 | TClonesArray* Records; | ||
| 23 | kusanagi | 2.1 | UINT32 PARAMETER_STAMP; |
| 24 | |||
| 25 | kusanagi | 1.1 | ArrDumpEvent(void); |
| 26 | ~ArrDumpEvent(void); | ||
| 27 | |||
| 28 | ClassDef(ArrDumpEvent, 1) | ||
| 29 | }; | ||
| 30 | } | ||
| 31 | |||
| 32 | #endif /* ARRDUMP_EVENT_H */ | ||
| 33 |
| ViewVC Help | |
| Powered by ViewVC 1.1.23 |