Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:27:08

0001 #ifndef RecoMuon_MuonSeedGenerator_MuonSeedVPtExtractor_H
0002 #define RecoMuon_MuonSeedGenerator_MuonSeedVPtExtractor_H
0003 
0004 /** \class MuonSeedVPtExtractor
0005  */
0006 
0007 #include "RecoMuon/TransientTrackingRecHit/interface/MuonTransientTrackingRecHit.h"
0008 
0009 class MuonSeedVPtExtractor {
0010 public:
0011   MuonSeedVPtExtractor();
0012 
0013   /// Destructor
0014   virtual ~MuonSeedVPtExtractor() {}
0015 
0016   virtual std::vector<double> pT_extract(MuonTransientTrackingRecHit::ConstMuonRecHitPointer firstHit,
0017                                          MuonTransientTrackingRecHit::ConstMuonRecHitPointer secondHit) const = 0;
0018 };
0019 #endif