CMS 3D CMS Logo

cepgenDefaultParameters_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 cepgenOutputModules = cms.untracked.PSet(
4  # place here all CepGen modules steering for output
5  # e.g. for a printout of every 1000th event:
6  #dump = cms.PSet(printEvery = cms.uint32(1000))
7 )
8 
9 cepgenPythia6BeamFragmenter = cms.untracked.PSet(
10  pythia6 = cms.PSet(
11  maxTrials = cms.int32(10),
12  seed = cms.int32(42),
13  preConfiguration = cms.vstring(
14  'MSTU(21)=1 ! Check on possible errors during program execution',
15  'MSTU(25)=0 ! No warnings are written',
16  'MSTJ(22)=2 ! Decay those unstable particles',
17  'PARJ(71)=10 . ! for which ctau 10 mm',
18  'MSTP(33)=0 ! no K factors in hard cross sections',
19  'MSTP(2)=1 ! which order running alphaS',
20  'MSTP(81)=0 ! multiple parton interactions 1 is Pythia default'
21  )
22  )
23 )