1 |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/event/log/LogRecord.h,v $ |
3 |
* $Id: LogRecord.h,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
5 |
* |
6 |
* Header file for the LogRecord class. |
7 |
*/ |
8 |
#ifndef LOG_RECORD_H |
9 |
#define LOG_RECORD_H |
10 |
|
11 |
#define UINT32 unsigned int |
12 |
#define UINT16 unsigned short |
13 |
#define UINT8 unsigned char |
14 |
|
15 |
#include <TObject.h> |
16 |
|
17 |
|
18 |
namespace pamela { |
19 |
/** |
20 |
* LogBlock data Wrapper |
21 |
*/ |
22 |
class LogRecord: public TObject { |
23 |
private: |
24 |
|
25 |
public: |
26 |
/** |
27 |
* Get the run name according to a certain run number. |
28 |
* @param run Run number. |
29 |
* @return a string with the run name. |
30 |
*/ |
31 |
UINT32 LG_RECORD_OBT; |
32 |
UINT16 LG_LINE; |
33 |
UINT16 LG_INFO; |
34 |
UINT8 LG_FILE_ID; |
35 |
|
36 |
LogRecord(void); |
37 |
~LogRecord(void){}; |
38 |
ClassDef(LogRecord, 1) |
39 |
}; |
40 |
} |
41 |
|
42 |
#endif /* LOG_RECORD_H */ |
43 |
|