File indexing completed on 2024-04-06 12:01:02
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #include "FWCore/Framework/interface/MakerMacros.h"
0018 #include "DataFormats/Common/interface/View.h"
0019 #include "CommonTools/UtilAlgos/interface/SingleObjectSelector.h"
0020 #include "CommonTools/UtilAlgos/interface/PtMinSelector.h"
0021 #include "CommonTools/UtilAlgos/interface/EtaRangeSelector.h"
0022 #include "CommonTools/UtilAlgos/interface/AndSelector.h"
0023 #include "DataFormats/Candidate/interface/Candidate.h"
0024
0025 typedef SingleObjectSelector<edm::View<reco::Candidate>,
0026 AndSelector<PtMinSelector, EtaRangeSelector>,
0027 reco::CandidateCollection>
0028 EtaPtMinCandViewSelector;
0029
0030 DEFINE_FWK_MODULE(EtaPtMinCandViewSelector);