#ifndef NEUTRON_EVENT_H #define NEUTRON_EVENT_H #include #include "event/SubPacket.h" #include "event/physics/neutronDetector/NeutronRecord.h" #include namespace pamela { namespace neutron { /** * NeutronEvent data Wrapper */ class NeutronEvent: public pamela::SubPacket { private: static TClonesArray *fgRecords; public: TClonesArray *Records; NeutronEvent(void); ~NeutronEvent(void); ClassDef(NeutronEvent, 1) }; } } #endif /* NEUTRON_EVENT_H */