/** @file * $Source: /home/cvsmanager/yoda/event/log/LogRecord.h,v $ * $Id: LogRecord.h,v 3.0 2005/03/04 15:54:11 kusanagi Exp $ * $Author: kusanagi $ * * Header file for the LogRecord class. */ #ifndef LOG_RECORD_H #define LOG_RECORD_H #include "event/SubPacket.h" namespace pamela { /** * LogBlock data Wrapper */ class LogRecord: public TObject { private: public: /** * Get the run name according to a certain run number. */ UINT32 RECORD_OBT; UINT8 MASKTYPE; UINT8 FILE_ID; UINT16 LINE_NO; UINT32 INFO1; LogRecord(void); ~LogRecord(void){}; ClassDef(LogRecord, 1) }; } #endif /* LOG_RECORD_H */