File indexing completed on 2024-04-06 12:13:24
0001 import FWCore.ParameterSet.Config as cms
0002
0003 cepgenOutputModules = cms.untracked.PSet(
0004
0005
0006
0007 )
0008
0009 cepgenPythia6BeamFragmenter = cms.untracked.PSet(
0010 pythia6 = cms.PSet(
0011 maxTrials = cms.int32(10),
0012 seed = cms.int32(42),
0013 preConfiguration = cms.vstring(
0014 'MSTU(21)=1 ! Check on possible errors during program execution',
0015 'MSTU(25)=0 ! No warnings are written',
0016 'MSTJ(22)=2 ! Decay those unstable particles',
0017 'PARJ(71)=10 . ! for which ctau 10 mm',
0018 'MSTP(33)=0 ! no K factors in hard cross sections',
0019 'MSTP(2)=1 ! which order running alphaS',
0020 'MSTP(81)=0 ! multiple parton interactions 1 is Pythia default'
0021 )
0022 )
0023 )