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