Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:44

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # Produce GenParticles of the two HepMCProducts
0004 from Configuration.StandardSequences.Generator_cff import *
0005 from GeneratorInterface.Core.generatorSmeared_cfi import *
0006 genParticles.mix = cms.string("mix")
0007 genParticles.doSubEvent = cms.untracked.bool(True)
0008 genParticles.useCrossingFrame = cms.untracked.bool(True)
0009 genParticles.saveBarCodes = cms.untracked.bool(True)
0010 genParticles.abortOnUnknownPDGCode = cms.untracked.bool(False)
0011 
0012 GenSmeared = cms.Sequence(generatorSmeared)
0013 hiGenJets = cms.Sequence(genParticlesForJets*hiRecoGenJets)
0014 pgen = cms.Sequence(cms.SequencePlaceholder("randomEngineStateProducer")+cms.SequencePlaceholder("mix")+VertexSmearing+GenSmeared+genParticles+hiGenJets)
0015