CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GenJetParticles_cff.py
Go to the documentation of this file.
2 
3 #
4 # $Id: GenJetParticles_cff.py,v 1.6 2010/03/01 21:25:51 wmtan Exp $
5 #
6 # ShR 27 Mar 07: move modules producing candidates for Jets from RecoGenJets.cff
7 #
8 #
9 genParticlesForJets = cms.EDProducer("InputGenJetsParticleSelector",
10  src = cms.InputTag("genParticles"),
11  ignoreParticleIDs = cms.vuint32(
12  1000022,
13  1000012, 1000014, 1000016,
14  2000012, 2000014, 2000016,
15  1000039, 5100039,
16  4000012, 4000014, 4000016,
17  9900012, 9900014, 9900016,
18  39),
19  partonicFinalState = cms.bool(False),
20  excludeResonances = cms.bool(True),
21  excludeFromResonancePids = cms.vuint32(12, 13, 14, 16),
22  tausAsJets = cms.bool(False)
23 )
24 
25 genJetParticles = cms.Sequence(genParticlesForJets)
26 
27 hiGenParticlesForJets = genParticlesForJets.clone()
28 hiGenParticlesForJets.src = cms.InputTag("hiGenParticles")
29 
30 genParticlesForJetsNoNu = genParticlesForJets.clone()
31 genParticlesForJetsNoNu.ignoreParticleIDs += cms.vuint32( 12,14,16)
32 
33 genParticlesForJetsNoMuNoNu = genParticlesForJets.clone()
34 genParticlesForJetsNoMuNoNu.ignoreParticleIDs += cms.vuint32( 12,13,14,16)