BmnRoot
Loading...
Searching...
No Matches
BmnStripDigit.cxx
Go to the documentation of this file.
1#include "BmnStripDigit.h"
2
4 : fStation(-1)
5 , fModule(0)
6 , fStripLayer(0)
7 , fStripNumber(0)
8 , fStripSignal(0.0)
9 , fStripNoise(-1.0)
10 , fIsGoodDigit(kTRUE)
11{}
12
14 : fStation(digit->fStation)
15 , fModule(digit->fModule)
16 , fStripLayer(digit->fStripLayer)
17 , fStripNumber(digit->fStripNumber)
18 , fStripSignal(digit->fStripSignal)
19 , fStripNoise(digit->fStripNoise)
20 , fIsGoodDigit(digit->fIsGoodDigit) // AZ-260322
21{}
22
24 Int_t iModule,
25 Int_t iStripLayer,
26 Int_t iStripNumber,
27 Double_t iStripSignal,
28 Double_t iStripNoise)
29 : fStation(iStation)
30 , fModule(iModule)
31 , fStripLayer(iStripLayer)
32 , fStripNumber(iStripNumber)
33 , fStripSignal(iStripSignal)
34 , fStripNoise(iStripNoise)
35 , fIsGoodDigit(kTRUE) // AZ-260322
36{}
37
virtual ~BmnStripDigit()