Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:28:50

0001 #ifndef SeedLayerPairs_H
0002 #define SeedLayerPairs_H
0003 
0004 /** \class SeedLayerPairs
0005  * abstract interface to acces pairs of layers 
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