File indexing completed on 2024-09-07 04:38:01
0001 #ifndef SeedLayerPairs_H
0002 #define SeedLayerPairs_H
0003
0004
0005
0006
0007
0008 #include <vector>
0009 #include "DataFormats/TrackerRecHit2D/interface/SiStripRecHit2DCollection.h"
0010 #include "DataFormats/TrackerRecHit2D/interface/SiStripMatchedRecHit2DCollection.h"
0011 #include "DataFormats/TrackerRecHit2D/interface/SiPixelRecHitCollection.h"
0012 #include "DataFormats/Common/interface/RangeMap.h"
0013 class DetLayer;
0014 class LayerWithHits;
0015
0016 class SeedLayerPairs {
0017 public:
0018 typedef std::pair<const LayerWithHits*, const LayerWithHits*> LayerPair;
0019
0020 SeedLayerPairs() {}
0021 virtual ~SeedLayerPairs() {}
0022 virtual std::vector<LayerPair> operator()() = 0;
0023 };
0024
0025 #endif