Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 /* \class reco::modules::plugins::CandViewCombiner

0002  * 

0003  * Configurable Candidate Selector reading

0004  * a View<Candidate> as input

0005  *

0006  * \author: Luca Lista, INFN

0007  *

0008  */
0009 #include "FWCore/Framework/interface/MakerMacros.h"
0010 #include "CommonTools/UtilAlgos/interface/StringCutObjectSelector.h"
0011 #include "CommonTools/CandAlgos/interface/CandCombiner.h"
0012 #include "DataFormats/Candidate/interface/Candidate.h"
0013 #include "DataFormats/Candidate/interface/NamedCompositeCandidate.h"
0014 #include "DataFormats/Candidate/interface/NamedCompositeCandidateFwd.h"
0015 
0016 typedef reco::modules::CandCombiner<StringCutObjectSelector<reco::Candidate, true>,
0017                                     AnyPairSelector,
0018                                     combiner::helpers::NormalClone,
0019                                     reco::NamedCompositeCandidateCollection>
0020     NamedCandViewCombiner;
0021 
0022 DEFINE_FWK_MODULE(NamedCandViewCombiner);