KiTrackMarlin  1.9.0
FTDNeighborPetalSecCon.h
1 #ifndef FTDNeighborPetalSecCon_h
2 #define FTDNeighborPetalSecCon_h
3 
4 #include "KiTrack/ISectorConnector.h"
5 
6 #include "ILDImpl/SectorSystemFTD.h"
7 
8 
9 
10 namespace KiTrackMarlin{
11 
19  class FTDNeighborPetalSecCon : public ISectorConnector{
20 
21 
22  public:
23 
27  FTDNeighborPetalSecCon ( const SectorSystemFTD* sectorSystemFTD );
28 
29  virtual std::set <int> getTargetSectors ( int sector );
30 
31  virtual ~FTDNeighborPetalSecCon(){};
32 
33  private:
34 
35  const SectorSystemFTD* _sectorSystemFTD;
36 
37 
38 
39  };
40 
41 
42 }
43 
44 
45 #endif
46 
A Sector System class for the Forward Tracking Disks FTD in the ILD.
Definition: SectorSystemFTD.h:27
Used to connect two sectors.
Definition: FTDNeighborPetalSecCon.h:19