CMS 3D CMS Logo

GenJetsSelector_iterativeCone5GenJets_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 import copy
3 
4 # module to select generator level tau-decays
5 # See https://twiki.cern.ch/twiki/bin/view/CMS/SWGuidePhysicsCutParser
6 # on how to use the cut-string
7 
8 
9 # require generator level hadrons produced within muon acceptance
10 iterativeCone5GenJetsEta25 = cms.EDFilter("GenJetSelector",
11  src = cms.InputTag("iterativeCone5GenJets"),
12  cut = cms.string('abs(eta) < 2.5'),
13  filter = cms.bool(False)
14 )
15 
16 # require generator level hadrons produced in tau-decay to have transverse momentum above threshold
17 iterativeCone5GenJetsPt5Cumulative = cms.EDFilter("GenJetSelector",
18  src = cms.InputTag("iterativeCone5GenJetsEta25"),
19  cut = cms.string('pt > 5.'),
20  filter = cms.bool(False)
21 )