er  dev
ERmuSiHit.h
1 // -------------------------------------------------------------------------
2 // ----- ERmuSiHit header file -----
3 // ----- Created 03/16 by V.Schetinin -----
4 // -------------------------------------------------------------------------
5 
6 #ifndef ERMUSIHIT_H
7 #define ERMUSIHIT_H
8 
9 #include "FairHit.h"
10 
11 class ERmuSiHit : public FairHit {
12 private:
13  Int_t fStation;
14  Int_t fID;
15 public:
16  ERmuSiHit(){}
17  ERmuSiHit(Int_t id, Int_t detID, TVector3& pos, TVector3& dpos, Int_t index, Int_t station);
18 
19  Int_t Station() const {return fStation;}
20  Int_t ID() const {return fID;}
21 
22  ClassDef(ERmuSiHit, 1)
23 
24 };
25 
26 #endif
27