BmnRoot
Loading...
Searching...
No Matches
BmnDchDigit.h
Go to the documentation of this file.
1#ifndef BMNDCHDIGIT_H
2#define BMNDCHDIGIT_H
3
4#include "TNamed.h"
5
6using namespace std;
7
8class BmnDchDigit : public TNamed {
9
10public:
11
14
16 BmnDchDigit(UChar_t iPlane, Short_t iWire, Double_t iTime, Int_t refId);
17
18 UChar_t GetPlane() const {return fPlane;}
19 Short_t GetWireNumber() const {return fWire;}
20 Double_t GetTime() const {return fTime;}
21 Int_t GetRefId() const {return fRef;}
22
23 void SetPlane(UChar_t _tmp) {fPlane = _tmp;}
24 void SetWireNumber(Short_t _tmp) {fWire = _tmp;}
25 void SetTime(Double_t _tmp) {fTime = _tmp;}
26 void SetRefId(Int_t _tmp) {fRef = _tmp;}
27
29 virtual ~BmnDchDigit();
30
31private:
32
33 UChar_t fPlane;
34 Short_t fWire;
35 Double_t fTime;
36 Int_t fRef;
37
38 ClassDef(BmnDchDigit, 2);
39
40};
41
42#endif /* BMNDCHDIGIT_H */
43
Int_t GetRefId() const
Definition BmnDchDigit.h:21
Double_t GetTime() const
Definition BmnDchDigit.h:20
void SetTime(Double_t _tmp)
Definition BmnDchDigit.h:25
Short_t GetWireNumber() const
Definition BmnDchDigit.h:19
virtual ~BmnDchDigit()
void SetRefId(Int_t _tmp)
Definition BmnDchDigit.h:26
BmnDchDigit(UChar_t iPlane, Short_t iWire, Double_t iTime, Int_t refId)
void SetWireNumber(Short_t _tmp)
Definition BmnDchDigit.h:24
UChar_t GetPlane() const
Definition BmnDchDigit.h:18
void SetPlane(UChar_t _tmp)
Definition BmnDchDigit.h:23
STL namespace.