#ifndef PHYSENDRUN_EVENT_H #define PHYSENDRUN_EVENT_H #include "../SubPacket.h" #include "CaloEndRun.h" #include "TBEndRun.h" namespace pamela { /** * Information events about the PhysEndRun. */ class PhysEndRunEvent: public pamela::SubPacket { private: public: PhysEndRunEvent(void); //----Calorimeter sections----- CaloEndRun CALO_ENDRUN[4]; TBEndRun TB_ENDRUN; //----Calorimeter sections----- ClassDef(PhysEndRunEvent, 1) }; } #endif /* PHYSENDRUN_EVENT_H */