/** @file * $Source: /afs/ba.infn.it/user/pamela/src/CVS/yoda/event/physics/tof/TofEvent.h,v $ * $Id: TofEvent.h,v 6.0 2006/02/07 17:11:08 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]; unsigned short unpackError; ClassDef(TofEvent, 3) }; } } #endif /* TOF_EVENT_H */