File indexing completed on 2024-04-06 12:03:34
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004
0005 generator = cms.EDFilter("Pythia8ConcurrentGeneratorFilter",
0006 comEnergy = cms.double(13000.0),
0007 crossSection = cms.untracked.double(6.44),
0008 filterEfficiency = cms.untracked.double(1),
0009 maxEventsToPrint = cms.untracked.int32(1),
0010 pythiaHepMCVerbosity = cms.untracked.bool(False),
0011 pythiaPylistVerbosity = cms.untracked.int32(1),
0012 PythiaParameters = cms.PSet(
0013 processParameters = cms.vstring(
0014 'Main:timesAllowErrors = 10000',
0015 'ParticleDecays:limitTau0 = on',
0016 'ParticleDecays:tauMax = 10',
0017 'Tune:ee 3',
0018 'Tune:pp 5',
0019 'HiggsSM:gg2H = on',
0020 '25:onMode = off',
0021 '25:onIfAny = 15',
0022 '25:mMin = 50.',
0023 '15:onMode = off',
0024 '15:onIfMatch = 16 -211'
0025 ),
0026 parameterSets = cms.vstring('processParameters')
0027 )
0028 )
0029
0030 ProductionFilterSequence = cms.Sequence(generator)