--- yoda/event/CalibCalEvent.h 2004/08/19 15:24:10 1.2 +++ yoda/event/CalibCalEvent.h 2006/05/30 19:10:01 6.1 @@ -2,10 +2,12 @@ #define CALIBCAL_EVENT_H #include "SubPacket.h" +#include namespace pamela { /** - * Information events about the CalibCal. + * CalibCal data Wrapper. + * */ class CalibCalEvent: public pamela::SubPacket { private: @@ -13,13 +15,11 @@ public: CalibCalEvent(void); - float cal_ped[96][11][4]; - float cal_good[96][11][4]; - float cal_thr[96][11][4]; - float cal_base[96][11][4]; - float cal_var[96][11][4]; - - + /** + * An array of chars containing the CalibCal data area. + */ + TArrayC *calibCalData; + ClassDef(CalibCalEvent, 1) }; }