Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 /* \class reco::modules::CandSelector

0002  * 

0003  * Configurable Candidate Selector

0004  *

0005  * \author: Luca Lista, INFN

0006  *

0007  */
0008 #include "FWCore/Framework/interface/MakerMacros.h"
0009 #include "CommonTools/UtilAlgos/interface/StringCutObjectSelector.h"
0010 #include "CommonTools/UtilAlgos/interface/SingleObjectSelector.h"
0011 #include "DataFormats/Candidate/interface/Candidate.h"
0012 
0013 namespace reco {
0014   namespace modules {
0015     typedef SingleObjectSelector<reco::CandidateCollection, StringCutObjectSelector<reco::Candidate> > CandSelector;
0016 
0017     DEFINE_FWK_MODULE(CandSelector);
0018 
0019   }  // namespace modules

0020 }  // namespace reco