Go to the documentation of this file.00001 #ifndef CandAlgos_NewCandMatcher_h
00002 #define CandAlgos_NewCandMatcher_h
00003
00004
00005
00006
00007
00008 #include "CommonTools/UtilAlgos/interface/NewMatcher.h"
00009 #include "DataFormats/Candidate/interface/Candidate.h"
00010
00011 namespace reco {
00012 namespace modulesNew {
00013 template<typename S, typename C1, typename C2, typename D = DeltaR<reco::Candidate> >
00014 class CandMatcher : public Matcher<C1, C2, S, D> {
00015 public:
00016 CandMatcher(const edm::ParameterSet & cfg ) : Matcher<C1, C2, S, D>( cfg ) { }
00017 ~CandMatcher() { }
00018 };
00019
00020 }
00021 }
00022 #endif