--- yoda/event/arrDump/ArrDumpEvent.h 2004/07/08 12:31:25 1.1 +++ yoda/event/arrDump/ArrDumpEvent.h 2006/02/07 17:11:08 6.0 @@ -1,27 +1,32 @@ #ifndef ARRDUMP_EVENT_H #define ARRDUMP_EVENT_H -#include "event/SubPacket.h" -#include "event/arrDump/ArrDumpRecord.h" +#include "ArrDumpRecord.h" #include -using namespace std; - namespace pamela { /** * ArrDumpEvent data Wrapper + * + * The pamela::ArrDumpEvent represents the ArrDump 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 ArrDumpEvent: 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::ArrDumpRecord type. */ TClonesArray* Records; - + + /** + * The Compilation Timestamp of the PAMELA CPU software. + */ + UINT32 PARAMETER_STAMP; + ArrDumpEvent(void); ~ArrDumpEvent(void);