CGEM BOSS 6.6.5.h
BESIII Offline Software System
Loading...
Searching...
No Matches
TCgemDigi.cxx
Go to the documentation of this file.
2
4
5//************************************************
6 //
8 Clear();
9 }
10//************************************************
11//
15/***********************************************
16 void TCgemDigi::Clear(Option_t *option) {
17 m_id =0;
18 TRawData::Clear();
19 }
20// ***********************************************
21 void TCgemDigi::Print(Option_t *option) const {
22 TObject::Print(option);
23 std::cout.precision(2);
24 std::cout << "Idetifier: " << m_id << std::endl;
25 TRawData::Print();
26 }
27**********************************************
28 //Get
29UInt_t TCgemDigi::getIntId() const {
30 return m_id;
31}
32
33 void TCgemDigi::initialize(UInt_t id, UInt_t time, UInt_t charge){
34 m_id = id;
35 TRawData::initialize(0,time,charge);
36 }
37**********************************************/
38
39 void TCgemDigi::setOverflow(const UInt_t overflow) {
40 m_overflow = overflow;
41 }
42
43
44 //Get
45 UInt_t TCgemDigi::getOverflow() const {
46 return m_overflow;
47 }
ClassImp(TCgemDigi) TCgemDigi
Definition TCgemDigi.cxx:3
UInt_t getOverflow() const
Definition TCgemDigi.cxx:45
void setOverflow(const UInt_t overflow)
Definition TCgemDigi.cxx:39
void Clear(Option_t *option="")
Definition TRawData.cxx:18