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