/** @file * $Source: /repository/event/physics/tof/TofEvent.h,v $ * $Id: TofEvent.h,v 1.1 2008-01-11 17:14:23 messineo Exp $ * $Author: messineo $ * * Header file for the raw calorimeter events */ #ifndef TOF_EVENT_H #define TOF_EVENT_H #include "../../SubPacket.h" namespace pamela { /** * Namespace */ namespace tof { /** * Techmodel tof data. */ class TofEvent: public pamela::SubPacket { private: public: TofEvent(void); int tdcid[12]; int evcount[12]; int tdcmask[12]; int adc[4][12]; int tdc[4][12]; int temp1[12]; int temp2[12]; unsigned short unpackError; ClassDef(TofEvent, 3) }; } } #endif /* TOF_EVENT_H */