BmnRoot
Loading...
Searching...
No Matches
BmnHit.cxx
Go to the documentation of this file.
1
2#include "BmnHit.h"
3
4BmnHit::BmnHit() : FairHit() {
5 fUsing = kFALSE;
6 fFlag = kTRUE;
7 fIndex = -1;
8 fDetId = kREF;
9 fStation = -1;
10 fModule = -1;
11 fType = -1;
12 fLength = -1.0;
13 fResX = -1000.;
14 fResY = -1000.;
15 fCovXY = -1000.;
16 fPseudo = false;
17}
18
19BmnHit::BmnHit(Int_t detID, TVector3 pos, TVector3 dpos, Int_t index)
20: FairHit(detID, pos, dpos, index) {
21 fUsing = kFALSE;
22 fFlag = kTRUE;
23 fIndex = -1;
24 fDetId = kREF;
25 fStation = -1;
26 fModule = -1;
27 fType = -1;
28 fLength = -1.0;
29 fResX = -1000.;
30 fResY = -1000.;
31 fCovXY = -1000.;
32 fPseudo = false;
33}
34
@ kREF
BmnHit()
Definition BmnHit.cxx:4
virtual ~BmnHit()
Definition BmnHit.cxx:35