/** @file * $Source: /home/cvsmanager/yoda/event/log/LogEvent.h,v $ * $Id: LogEvent.h,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $ * $Author: kusanagi $ * * Header file for the LogEvent class. */ #ifndef LOG_EVENT_H #define LOG_EVENT_H #include #include "event/SubPacket.h" #include "event/log/LogRecord.h" #include using namespace std; namespace pamela { /** * LogEvent data Wrapper */ 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. */ int Log_crc_ok; TClonesArray* Records; LogEvent(void); ~LogEvent(void); ClassDef(LogEvent, 1) }; } #endif /* LOG_EVENT_H */