--- yoda/event/mcmd/McmdEvent.h 2004/12/03 22:04:30 2.1 +++ yoda/event/mcmd/McmdEvent.h 2006/02/04 12:37:44 5.2 @@ -1,27 +1,33 @@ /** @file * $Source: /home/cvsmanager/yoda/event/mcmd/McmdEvent.h,v $ - * $Id: McmdEvent.h,v 2.0 2004/09/21 20:50:13 kusanagi Exp $ - * $Author: kusanagi $ + * $Id: McmdEvent.h,v 5.1 2005/08/29 13:02:32 Maurizio Nagni Exp $ + * $Author: Maurizio Nagni $ * * Header file for the McmdEvent class. */ #ifndef MCMD_EVENT_H #define MCMD_EVENT_H -#include "event/SubPacket.h" -#include "event/mcmd/McmdRecord.h" +#include "McmdRecord.h" #include namespace pamela { /** * McmdEvent data Wrapper + * + * The McmdEvent represents the "McmdEvent" packet generated by the PAMELA CPU software. + * Is the results of several read of the PAMELA TMTC board. */ class McmdEvent: public pamela::SubPacket { private: static TClonesArray *fgRecords; public: + /** + * Contain multiple instances of pamela::McmdRecord type. + */ TClonesArray *Records; + int Mcmd_crc_ok; McmdEvent(void);