1 |
kusanagi |
1.1 |
#ifndef TABDUMP_EVENT_H |
2 |
|
|
#define TABDUMP_EVENT_H |
3 |
|
|
|
4 |
|
|
#include "event/SubPacket.h" |
5 |
|
|
#include "event/tabDump/TabDumpRecord.h" |
6 |
|
|
#include <TClonesArray.h> |
7 |
|
|
|
8 |
|
|
using namespace std; |
9 |
|
|
|
10 |
|
|
namespace pamela { |
11 |
|
|
/** |
12 |
|
|
* TabDumpEvent data Wrapper |
13 |
|
|
*/ |
14 |
|
|
class TabDumpEvent: public pamela::SubPacket { |
15 |
|
|
private: |
16 |
|
|
static TClonesArray *fgRecords; |
17 |
|
|
public: |
18 |
|
|
/** |
19 |
|
|
* Get the run name according to a certain run number. |
20 |
|
|
* @param run Run number. |
21 |
|
|
* @return a string with the run name. |
22 |
|
|
*/ |
23 |
|
|
TClonesArray* Records; |
24 |
|
|
|
25 |
|
|
TabDumpEvent(void); |
26 |
|
|
~TabDumpEvent(void); |
27 |
|
|
|
28 |
|
|
ClassDef(TabDumpEvent, 1) |
29 |
|
|
}; |
30 |
|
|
} |
31 |
|
|
|
32 |
|
|
#endif /* TABDUMP_EVENT_H */ |
33 |
|
|
|