er  dev
ERNeuRadHitWBT.h
1 // -------------------------------------------------------------------------
2 // ----- ERNeuRadHitWBT header file -----
3 // ----- Created 03/16 by V.Schetinin -----
4 // -------------------------------------------------------------------------
5 
6 #ifndef ERNeuRadHitWBT_H
7 #define ERNeuRadHitWBT_H
8 
9 #include "ERNeuRadHit.h"
10 
11 class ERNeuRadHitWBT : public ERNeuRadHit {
12 
13 private:
14 
15  Float_t fQInteg; //TODO what is this
16 
17 public:
18 
19  ERNeuRadHitWBT() {}
20 
21  ERNeuRadHitWBT(Int_t id,
22  Int_t detID,
23  TVector3& pos,
24  TVector3& dpos,
25  Int_t refIndex,
26  Int_t ModuleIndex,
27  Int_t FiberIndex,
28  Float_t time,
29  Float_t QInteg);
30 
31  //TODO Destructor?
32 
33  Float_t QInteg() const {return fQInteg;}
34 
35  ClassDef(ERNeuRadHitWBT, 1)
36 };
37 
38 #endif // ERNeuRadHitWBT_H