/** @file * $Source: /home/cvsmanager/yoda/event/physics/tof/TofEvent.h,v $ * $Id: TofEvent.h,v 5.1 2006/02/04 12:37:44 kusanagi Exp $ * $Author: kusanagi $ * * 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]; ClassDef(TofEvent, 2) }; } } #endif /* TOF_EVENT_H */