BmnRoot
Loading...
Searching...
No Matches
BmnGemDigit.cxx
Go to the documentation of this file.
1#include "BmnGemDigit.h"
2
3using namespace std;
4
6// fLighted = -1;
7// fNumber = -1;
8// fAdc = -1;
9}
10
11//......................................................................
12
13BmnGemDigit::BmnGemDigit(Int_t iStrip, Int_t iStat, Float_t Q) {
14 fLighted = iStrip;
15 fNumber = iStat;
16 fAdc = Q;
17}
18
19//......................................................................
20
22 fLighted = digit->GetLightedStrip();
23 fNumber = digit->GetStationNum();
24 fAdc = digit->GetQ();
25}
26
27//......................................................................
28
32
33//......................................................................
Int_t GetStationNum() const
Definition BmnGemDigit.h:19
Int_t GetLightedStrip() const
Definition BmnGemDigit.h:11
virtual ~BmnGemDigit()
Float_t GetQ() const
Definition BmnGemDigit.h:15
STL namespace.