CMS 3D CMS Logo

TopDecaySubset_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # module to make a persistent copy of the genParticles from the top decay,
5 # using either status 2 equivalent particles (default) or status 3 particles
6 #
7 decaySubset = cms.EDProducer("TopDecaySubset",
8 
9  src = cms.InputTag("genParticles"),
10 
15  fillMode = cms.string("kStable"),
16 
19  runMode = cms.string("Run1"),
20 
22  addRadiation = cms.bool(True)
23 )
24