--- yoda/event/log/LogEvent.h 2004/07/06 12:20:23 1.1.1.1 +++ yoda/event/log/LogEvent.h 2005/05/07 08:48:49 4.1 @@ -1,7 +1,7 @@ /** @file - * $Source: /home/cvspamela/yoda/event/log/LogEvent.h,v $ - * $Id: LogEvent.h,v 1.1 2004/03/26 15:22:54 nagni Exp $ - * $Author: nagni $ + * $Source: /home/cvsmanager/yoda/event/log/LogEvent.h,v $ + * $Id: LogEvent.h,v 4.0 2005/03/06 04:33:01 kusanagi Exp $ + * $Author: kusanagi $ * * Header file for the LogEvent class. */ @@ -17,18 +17,25 @@ namespace pamela { /** - * LogEvent data Wrapper + * LogEvent data Wrapper. + * + * The LogEvent represents the "LogEvent" packet generated by the PAMELA CPU software + * and is a collection of several logs generated during PAMELA operations + * and recorded in the CPU RAM between two storing operations. */ class LogEvent: 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. + * The Compilation Timestamp of the PAMELA CPU software. + */ + UINT32 COMPILATION_TIMESTAMP; + + /** + * Contain multiple instances of pamela::LogRecord type. */ - int Log_crc_ok; TClonesArray* Records; LogEvent(void);