--- yoda/event/tabDump/TabDumpEvent.h 2005/03/04 15:54:11 3.0 +++ yoda/event/tabDump/TabDumpEvent.h 2005/08/29 09:46:12 5.0 @@ -1,25 +1,30 @@ #ifndef TABDUMP_EVENT_H #define TABDUMP_EVENT_H -#include "event/tabDump/TabDumpRecord.h" +#include "TabDumpRecord.h" #include -using namespace std; - namespace pamela { /** - * TabDumpEvent data Wrapper + * TabDumpEvent data Wrapper. + * + * The pamela::TabDumpEvent represents the TabDump 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 TabDumpEvent: 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::TabDumpRecord type. */ TClonesArray* Records; + + /** + * The Compilation Timestamp of the PAMELA CPU software. + */ UINT32 PARAMETER_STAMP; TabDumpEvent(void);