Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:02

0001 #ifndef CandAlgos_CandMatcher_h
0002 #define CandAlgos_CandMatcher_h
0003 /* \class CandMatcher
0004  *
0005  * Producer fo simple Candidate match map
0006  *
0007  */
0008 #include "CommonTools/UtilAlgos/interface/Matcher.h"
0009 #include "DataFormats/Candidate/interface/Candidate.h"
0010 #include "CommonTools/CandUtils/interface/CandMapTrait.h"
0011 
0012 namespace reco::modules {
0013   template <typename S, typename Collection = CandidateCollection, typename D = DeltaR<reco::Candidate> >
0014   using CandMatcher = Matcher<Collection, Collection, S, D, typename reco::helper::CandMapTrait<Collection>::type>;
0015 }  // namespace reco::modules
0016 #endif