BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Event/RootEventData/include/RootEventData/TTofDigi.h
Go to the documentation of this file.
1#ifndef DigiRootData_TTofDigi_H
2#define DigiRootData_TTofDigi_H 1
3
4#include "TRawData.h"
5
6class TTofDigi : public TRawData {
7
8public:
9 TTofDigi();
10
11 ~TTofDigi();
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( TTofDigi, 1 )
26};
27
28#endif
UInt_t getOverflow() const
Definition TTofDigi.cxx:35
void setOverflow(const UInt_t overflow)
Definition TTofDigi.cxx:32