1 |
|
2 |
#ifndef NEUTRON_EVENT_H |
3 |
#define NEUTRON_EVENT_H |
4 |
|
5 |
#include <vector> |
6 |
#include "event/SubPacket.h" |
7 |
#include "event/physics/neutronDetector/NeutronRecord.h" |
8 |
#include <TClonesArray.h> |
9 |
|
10 |
namespace pamela { |
11 |
namespace neutron { |
12 |
/** |
13 |
* NeutronEvent data Wrapper |
14 |
*/ |
15 |
class NeutronEvent: public pamela::SubPacket { |
16 |
private: |
17 |
static TClonesArray *fgRecords; |
18 |
|
19 |
public: |
20 |
TClonesArray *Records; |
21 |
|
22 |
NeutronEvent(void); |
23 |
~NeutronEvent(void); |
24 |
|
25 |
ClassDef(NeutronEvent, 1) |
26 |
}; |
27 |
} |
28 |
} |
29 |
#endif /* NEUTRON_EVENT_H */ |
30 |
|