/** @file * $Source: /home/cvsmanager/yoda/event/tmtc/TmtcRecord.h,v $ * $Id: TmtcRecord.h,v 3.0 2005/03/04 15:54:11 kusanagi Exp $ * $Author: kusanagi $ * * Header file for the TmtcRecord class. */ #ifndef TMTC_RECORD_H #define TMTC_RECORD_H #include "event/SubPacket.h" namespace pamela { /** * TmtcBlock data Wrapper */ class TmtcRecord: public TObject { private: public: /** * Get the run name according to a certain run number. * @param run Run number. * @return a string with the run name. */ //long Record_OBT; UINT32 TM_RECORD_OBT; UINT16 TM_DIAG_AND_BILEVEL_ACQ; UINT16 TM_TH_ANA[12]; UINT8 TM_DEA_ANA[6]; //float TM_DEA_ANA_P[16]; //! //float TM_TH_ANA_P[16]; //! TmtcRecord(void); ~TmtcRecord(void){}; ClassDef(TmtcRecord, 1) }; } #endif /* TMTC_RECORD_H */