er  dev
ERmuSiTrack.h
1 // -------------------------------------------------------------------------
2 // ----- ERmuSiTrack header file -----
3 // ----- Created 03/16 by V.Schetinin -----
4 // -------------------------------------------------------------------------
5 
6 #ifndef ERMUSITRACK_H
7 #define ERMUSITRACK_H
8 
9 #include "ERmuSiHit.h"
10 
11 class ERmuSiTrack : public TObject{
12 private:
13  ERmuSiHit fHits[3];
14 public:
15  ERmuSiTrack(){}
16 
17  Int_t AddHit(Int_t station, ERmuSiHit hit);
18  ERmuSiHit* Hit(Int_t iStation){return &(fHits[iStation]);}
19  ClassDef(ERmuSiTrack, 1)
20 };
21 
22 #endif
23