1 |
kusanagi |
1.1 |
#ifndef VARDUMP_EVENT_H |
2 |
|
|
#define VARDUMP_EVENT_H |
3 |
|
|
|
4 |
|
|
#include "event/varDump/VarDumpRecord.h" |
5 |
|
|
#include <TClonesArray.h> |
6 |
|
|
|
7 |
|
|
using namespace std; |
8 |
|
|
|
9 |
|
|
namespace pamela { |
10 |
|
|
/** |
11 |
|
|
* VarDumpEvent data Wrapper |
12 |
|
|
*/ |
13 |
|
|
class VarDumpEvent: 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 |
|
|
|
24 |
|
|
VarDumpEvent(void); |
25 |
|
|
~VarDumpEvent(void); |
26 |
|
|
|
27 |
|
|
ClassDef(VarDumpEvent, 1) |
28 |
|
|
}; |
29 |
|
|
} |
30 |
|
|
|
31 |
|
|
#endif /* VARDUMP_EVENT_H */ |
32 |
|
|
|