All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CRTData.cxx
Go to the documentation of this file.
2 
3 namespace sbnd{
4 namespace crt{
5 
6  CRTData::CRTData(): fChannel(0), fT0(0), fT1(0){
7  }
8 
9  CRTData::CRTData(uint32_t channel, uint32_t t0,
10  uint32_t t1, uint32_t adc):
11  fChannel(channel),
12  fT0(t0),
13  fT1(t1),
14  fADC(adc){
15  }
16 
18  }
19 
20  uint32_t CRTData::Channel() const {
21  return fChannel;
22  }
23  uint32_t CRTData::T0() const {
24  return fT0;
25  }
26  uint32_t CRTData::T1() const {
27  return fT1;
28  }
29  uint32_t CRTData::ADC() const {
30  return fADC;
31  }
32 
33 } // namespace crt
34 } // namespace sbnd
uint32_t Channel() const
Definition: CRTData.cxx:20
createEngine fT0
uint32_t T0() const
Definition: CRTData.cxx:23
virtual ~CRTData()
Definition: CRTData.cxx:17
uint32_t ADC() const
Definition: CRTData.cxx:29
stream1 can override from command line with o or output services user sbnd
process_name crt
uint32_t T1() const
Definition: CRTData.cxx:26