--- yoda/event/varDump/VarDumpEvent.h 2005/03/04 10:11:09 2.1.2.1 +++ yoda/event/varDump/VarDumpEvent.h 2006/02/07 17:11:09 6.0 @@ -1,27 +1,32 @@ #ifndef VARDUMP_EVENT_H #define VARDUMP_EVENT_H -#include "event/varDump/VarDumpRecord.h" +#include "VarDumpRecord.h" #include -using namespace std; - namespace pamela { /** - * VarDumpEvent data Wrapper + * VarDumpEvent data Wrapper. + * + * The pamela::VarDumpEvent represents the VarDump packet generated by the PAMELA CPU software. + * It contains the values of the PAMELA CPU software's vectors written in Mass Memory between + * two storing operations. */ class VarDumpEvent: public pamela::SubPacket { private: static TClonesArray *fgRecords; public: + /** - * Get the run name according to a certain run number. - * @param run Run number. - * @return a string with the run name. + * Contain multiple instances of pamela::VarDumpRecord type. */ - TClonesArray* Records; - UINT32 PARAMETER_STAMP; - + TClonesArray* Records; + + /** + * The Compilation Timestamp of the PAMELA CPU software. + */ + UINT32 PARAMETER_STAMP; + VarDumpEvent(void); ~VarDumpEvent(void);