Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:46

0001 #ifndef RecoEgamma_EgammaElectronAlgos_GsfElectronTools_h
0002 #define RecoEgamma_EgammaElectronAlgos_GsfElectronTools_h
0003 
0004 #include "DataFormats/Common/interface/Handle.h"
0005 #include "DataFormats/GsfTrackReco/interface/GsfTrackFwd.h"
0006 #include "DataFormats/TrackReco/interface/TrackFwd.h"
0007 #include "CommonTools/Utils/interface/KinematicTables.h"
0008 
0009 namespace egamma {
0010 
0011   // From Puneeth Kalavase : returns the CTF track that has the highest fraction
0012   // of shared hits in Pixels and the inner strip tracker with the electron Track
0013   std::pair<reco::TrackRef, float> getClosestCtfToGsf(reco::GsfTrackRef const&,
0014                                                       edm::Handle<reco::TrackCollection> const& ctfTracksH,
0015                                                       edm::soa::EtaPhiTableView trackEtaPhiTable);
0016 
0017 }  // namespace egamma
0018 
0019 #endif