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