File indexing completed on 2024-04-06 12:01:02
0001 #ifndef CandAlgos_CandMatcher_h
0002 #define CandAlgos_CandMatcher_h
0003
0004
0005
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 }
0016 #endif