Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 /* \class DummyCandSelector

0002  * 

0003  * Dummy Candidate selector module

0004  * 

0005  * module allCands = DummyCandSelector {

0006  *   InputTag src = myCollection

0007  * };

0008  *

0009  * \author: Luca Lista, INFN

0010  *

0011  */
0012 #include "FWCore/Framework/interface/MakerMacros.h"
0013 #include "CommonTools/UtilAlgos/interface/SingleObjectSelector.h"
0014 #include "CommonTools/UtilAlgos/interface/DummySelector.h"
0015 #include "CommonTools/UtilAlgos/interface/FreeFunctionSelector.h"
0016 #include "DataFormats/Candidate/interface/Candidate.h"
0017 
0018 typedef SingleObjectSelector<reco::CandidateView, DummySelector> DummyCandSelector;
0019 
0020 typedef SingleObjectSelector<reco::CandidateView, FreeFunctionSelector<reco::Candidate, dummy::select> >
0021     DummyFunCandSelector;
0022 
0023 DEFINE_FWK_MODULE(DummyCandSelector);
0024 DEFINE_FWK_MODULE(DummyFunCandSelector);