#ifndef CALIBCALPED_EVENT_H #define CALIBCALPED_EVENT_H #include "SubPacket.h" namespace pamela { /** * Information events about the CalibCalPed. */ class CalibCalPedEvent: public pamela::SubPacket { private: public: CalibCalPedEvent(void); int IEV2; int calped[96][11][4]; int calgood[96][11][4]; int calthr[96][11][4]; int calrms[96][11][4]; int calbase[96][11][4]; int calvar[96][11][4]; int calpuls[96][11][4]; ClassDef(CalibCalPedEvent, 1) }; } #endif /* CALIBCALPED_EVENT_H */