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