CMS 3D CMS Logo

genCandidates_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 genCandidates = cms.EDProducer("HepMCCandidateProducer",
4  src = cms.string('generatorSmeared'),
5  verbose = cms.untracked.bool(False),
6  stableOnly = cms.bool(True),
7  excludeList = cms.vstring('nu_e',
8  'nu_mu',
9  'nu_tau',
10  'gamma',
11  'pi0',
12  'K_L0',
13  'n0')
14 )
15 
16