BOSS 7.0.5
BESIII Offline Software System
Loading...
Searching...
No Matches
TEmcDigi.cxx
Go to the documentation of this file.
1#include "RootEventData/TEmcDigi.h"
2
4
5//**************************************
7 Clear();
8}
9
10//*************************************
11
13 Clear();
14}
15
16/************************************
17
18void TEmcDigi::Clear(Option_t *option) {
19}
20
21
22void TEmcDigi::Print(Option_t *option) const {
23 TObject::Print(option);
24 std::cout.precision(2);
25 std::cout << "Idetifier: " << m_intId << std::endl;
26 std::cout << "TimeChannel: " << m_timeChannel <<std::endl;
27 std::cout << "ChargeChannel:" << m_chargeChannel <<std::endl;
28}
29 ******************************/
30
31
32
33void TEmcDigi::setMeasure(const UInt_t measure) {
34 m_measure = measure;
35}
36
37UInt_t TEmcDigi::getMeasure() const {
38 return m_measure;
39}
40
41
ClassImp(TEmcDigi) TEmcDigi
Definition: TEmcDigi.cxx:3
~TEmcDigi()
Definition: TEmcDigi.cxx:12
UInt_t getMeasure() const
Definition: TEmcDigi.cxx:37
void setMeasure(const UInt_t measure)
Definition: TEmcDigi.cxx:33
void Clear(Option_t *option="")
Definition: TRawData.cxx:18