BmnRoot
Loading...
Searching...
No Matches
BmnGemDigit.h
Go to the documentation of this file.
1#include <TNamed.h>
2
3class BmnGemDigit : public TNamed {
4public:
5
8 BmnGemDigit(Int_t iStrip, Int_t iStat, Float_t Q);
9 virtual ~BmnGemDigit();
10
11 Int_t GetLightedStrip() const {
12 return fLighted;
13 }
14
15 Float_t GetQ() const {
16 return fAdc;
17 }
18
19 Int_t GetStationNum() const {
20 return fNumber;
21 }
22
23
24private:
25
26 Int_t fLighted; // Number of lighted strip
27
28 Int_t fNumber; // Station number
29 Float_t fAdc; // charge on strip
30
31 ClassDef(BmnGemDigit, 1)
32};
Int_t GetStationNum() const
Definition BmnGemDigit.h:19
BmnGemDigit(BmnGemDigit *digit)
BmnGemDigit(Int_t iStrip, Int_t iStat, Float_t Q)
Int_t GetLightedStrip() const
Definition BmnGemDigit.h:11
virtual ~BmnGemDigit()
Float_t GetQ() const
Definition BmnGemDigit.h:15