00001 import FWCore.ParameterSet.Config as cms
00002
00003 from GeneratorInterface.Pythia6Interface.pythiaDefault_cff import *
00004 pyth = cms.EDProducer("PythiaProducer",
00005 pythiaHepMCVerbosity = cms.untracked.bool(False),
00006 pythiaPylistVerbosity = cms.untracked.int32(0),
00007 pythiaFrame = cms.string('CMS'),
00008 comEnergy = cms.double(14000.0),
00009 PythiaParameters = cms.PSet(
00010
00011
00012 pythiaDefaultBlock,
00013
00014
00015 myParameters = cms.vstring(),
00016
00017
00018
00019 parameterSets = cms.vstring('pythiaDefault',
00020 'pythiaMinBias',
00021 'myParameters'),
00022 pythiaMinBias = cms.vstring('MSEL=0 ! User defined processes',
00023 'MSUB(11)=1 ! Min bias process',
00024 'MSUB(12)=1 ! Min bias process',
00025 'MSUB(13)=1 ! Min bias process',
00026 'MSUB(28)=1 ! Min bias process',
00027 'MSUB(53)=1 ! Min bias process',
00028 'MSUB(68)=1 ! Min bias process',
00029 'MSUB(92)=1 ! Min bias process, single diffractive',
00030 'MSUB(93)=1 ! Min bias process, single diffractive',
00031 'MSUB(94)=1 ! Min bias process, double diffractive',
00032 'MSUB(95)=1 ! Min bias process',
00033 'MSTJ(11)=3 ! Choice of the fragmentation function',
00034 'MSTJ(22)=2 ! Decay those unstable particles',
00035 'PARJ(71)=10 . ! for which ctau 10 mm',
00036 'MSTP(2)=1 ! which order running alphaS',
00037 'MSTP(33)=0 ! no K factors in hard cross sections',
00038 'MSTP(51)=7 ! structure function chosen',
00039 'MSTP(81)=1 ! multiple parton interactions 1 is Pythia default',
00040 'MSTP(82)=4 ! Defines the multi-parton model',
00041 'MSTU(21)=1 ! Check on possible errors during program execution',
00042 'PARP(82)=1.9409 ! pt cutoff for multiparton interactions',
00043 'PARP(89)=1960. ! sqrts for which PARP82 is set',
00044 'PARP(83)=0.5 ! Multiple interactions: matter distrbn parameter',
00045 'PARP(84)=0.4 ! Multiple interactions: matter distribution parameter',
00046 'PARP(90)=0.16 ! Multiple interactions: rescaling power',
00047 'PARP(67)=2.5 ! amount of initial-state radiation',
00048 'PARP(85)=1.0 ! gluon prod. mechanism in MI',
00049 'PARP(86)=1.0 ! gluon prod. mechanism in MI',
00050 'PARP(62)=1.25 ! ',
00051 'PARP(64)=0.2 ! ',
00052 'MSTP(91)=1 !',
00053 'PARP(91)=2.1 ! kt distribution',
00054 'PARP(93)=15.0 ! ')
00055 )
00056 )
00057
00058