File indexing completed on 2023-03-17 10:49:00
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from Configuration.Generator.Pythia8CommonSettings_cfi import *
0004 from Configuration.Generator.Pythia8CUEP8M1Settings_cfi import *
0005
0006
0007
0008 generator = cms.EDFilter("Pythia8ConcurrentGeneratorFilter",
0009 crossSection = cms.untracked.double(71.39e+09),
0010 maxEventsToPrint = cms.untracked.int32(0),
0011 pythiaPylistVerbosity = cms.untracked.int32(1),
0012 filterEfficiency = cms.untracked.double(1.0),
0013 pythiaHepMCVerbosity = cms.untracked.bool(False),
0014 comEnergy = cms.double(8000.0),
0015 PythiaParameters = cms.PSet(
0016 pythia8CommonSettingsBlock,
0017 pythia8CUEP8M1SettingsBlock,
0018 processParameters = cms.vstring(
0019 'SoftQCD:nonDiffractive = on',
0020 'SoftQCD:singleDiffractive = on',
0021 'SoftQCD:doubleDiffractive = on'),
0022 parameterSets = cms.vstring('pythia8CommonSettings',
0023 'pythia8CUEP8M1Settings',
0024 'processParameters',
0025 )
0026 )
0027 )
0028
0029 ProductionFilterSequence = cms.Sequence(generator)
0030