ForwardTracking  1.10.0
EndcapHitSimple.h
1 #ifndef EndcapHitSimple_h
2 #define EndcapHitSimple_h
3 
4 #include "KiTrack/IHit.h"
5 
6 #include "SectorSystemEndcap.h"
7 
8 
9 
10 namespace KiTrackMarlin{
11 
12 
15  class EndcapHitSimple : public IHit{
16 
17 
18  public:
19 
20  EndcapHitSimple( float x , float y , float z , int layer , int phi, int theta, const SectorSystemEndcap* const sectorSystemEndcap );
21 
22 
23 
24  virtual const ISectorSystem* getSectorSystem() const { return _sectorSystemEndcap; };
25 
26  virtual ~EndcapHitSimple(){}
27 
28  private:
29 
30  int _layer;
31  int _phi;
32  int _theta;
33 
34  const SectorSystemEndcap* _sectorSystemEndcap;
35 
36  //void calculateSector(){ _sector = _sectorSystemEndcap->getSector( _side, _layer , _module , _sensor ); }
37 
38  };
39 
40 }
41 
42 
43 #endif
44 
A hit.
Definition: EndcapHitSimple.h:15
A Sector System class for the Forward Tracking Disks FTD in the ILD.
Definition: SectorSystemEndcap.h:29