/** @file * $Source: /home/cvspamela/yoda/event/log/LogRecord.h,v $ * $Id: LogRecord.h,v 1.1 2004/03/26 15:22:54 nagni Exp $ * $Author: nagni $ * * Header file for the LogRecord class. */ #ifndef LOG_RECORD_H #define LOG_RECORD_H #define UINT unsigned int #include namespace pamela { /** * LogBlock data Wrapper */ class LogRecord: public TObject { private: public: /** * Get the run name according to a certain run number. * @param run Run number. * @return a string with the run name. */ UINT LG_RECORD_OBT; UINT LG_LINE; UINT LG_INFO; UINT LG_FILE_ID; LogRecord(void); ~LogRecord(void){}; ClassDef(LogRecord, 1) }; } #endif /* LOG_RECORD_H */