18 |
|
class RunInfo : public DataBase |
19 |
|
{ |
20 |
|
public: |
21 |
< |
RunInfo() : fRunNum(0), fL1Entry(0), fHltEntry(0) {} |
22 |
< |
RunInfo(UInt_t run) : fRunNum(run), fL1Entry(0), fHltEntry(0) {} |
21 |
> |
RunInfo() : fRunNum(0), fHltEntry(0) {} |
22 |
> |
RunInfo(UInt_t run) : fRunNum(run), fHltEntry(0) {} |
23 |
|
|
24 |
|
Int_t HltEntry() const { return fHltEntry; } |
25 |
– |
Int_t L1Entry() const { return fL1Entry; } |
25 |
|
EObjType ObjType() const { return kRunInfo; } |
26 |
|
UInt_t RunNum() const { return fRunNum; } |
28 |
– |
void SetL1Entry(Int_t i) { fL1Entry=i; } |
27 |
|
void SetHltEntry(Int_t i) { fHltEntry=i; } |
28 |
|
void SetRunNum(UInt_t i) { fRunNum=i; } |
29 |
|
|
30 |
|
protected: |
31 |
|
UInt_t fRunNum; //run number |
34 |
– |
Int_t fL1Entry; //entry for L1 block |
32 |
|
Int_t fHltEntry; //entry for HLT block |
33 |
|
|
34 |
< |
ClassDef(RunInfo, 1) // Run info class |
34 |
> |
ClassDef(RunInfo, 2) // Run info class |
35 |
|
}; |
36 |
|
} |
37 |
|
#endif |