Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef CandAlgos_NewCandMatcher_h
0002 #define CandAlgos_NewCandMatcher_h
0003 /* \class CandMatcher
0004  *
0005  * Producer fo simple Candidate match map
0006  *
0007  */
0008 #include "CommonTools/UtilAlgos/interface/NewMatcher.h"
0009 #include "DataFormats/Candidate/interface/Candidate.h"
0010 
0011 namespace reco::modulesNew {
0012   template <typename S, typename C1, typename C2, typename D = DeltaR<reco::Candidate> >
0013   using CandMatcher = Matcher<C1, C2, S, D>;
0014 }  // namespace reco::modulesNew
0015 #endif