CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/CommonTools/CandAlgos/plugins/CandSelector.cc

Go to the documentation of this file.
00001 /* \class reco::modules::CandSelector
00002  * 
00003  * Configurable Candidate Selector
00004  *
00005  * \author: Luca Lista, INFN
00006  *
00007  */
00008 #include "FWCore/Framework/interface/MakerMacros.h"
00009 #include "CommonTools/UtilAlgos/interface/StringCutObjectSelector.h"
00010 #include "CommonTools/UtilAlgos/interface/SingleObjectSelector.h"
00011 #include "DataFormats/Candidate/interface/Candidate.h"
00012 
00013 namespace reco {
00014   namespace modules {
00015     typedef SingleObjectSelector<
00016               reco::CandidateCollection,
00017               StringCutObjectSelector<reco::Candidate>
00018             > CandSelector;
00019 
00020 DEFINE_FWK_MODULE( CandSelector );
00021 
00022   }
00023 }