BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Event/RootEventData/include/RootEventData/TLumiDigi.h
Go to the documentation of this file.
1#ifndef DigiRootData_TLumiDigi_H
2#define DigiRootData_TLumiDigi_H 1
3
4#include "TRawData.h"
5
6class TLumiDigi : public TRawData {
7
8public:
9 TLumiDigi();
10
11 ~TLumiDigi();
12
13 void setOverflow( const UInt_t overflow );
14
15 // Get
16 UInt_t getOverflow() const;
17
18private:
19 UInt_t m_overflow;
20
21 ClassDef( TLumiDigi, 1 )
22};
23
24#endif
UInt_t getOverflow() const
Definition TLumiDigi.cxx:11
void setOverflow(const UInt_t overflow)
Definition TLumiDigi.cxx:9