00001 import FWCore.ParameterSet.Config as cms
00002
00003 source = cms.Source("MadGraphSource",
00004
00005
00006 produceEventTreeFile = cms.untracked.bool(False),
00007 pythiaPylistVerbosity = cms.untracked.int32(0),
00008
00009 fileNames = cms.untracked.vstring('file:run_1_unweighted_events.lhe'),
00010 MEMAIN_qcut = cms.untracked.double(0.0),
00011 pythiaHepMCVerbosity = cms.untracked.bool(False),
00012
00013 MEMAIN_etaclmax = cms.untracked.double(0.0),
00014
00015 minimalLH = cms.untracked.bool(False),
00016
00017 firstEvent = cms.untracked.uint32(0),
00018 MEMAIN_iexcfile = cms.untracked.uint32(0),
00019
00020 maxEventsToPrint = cms.untracked.int32(5),
00021
00022 getInputFromMCDB = cms.untracked.bool(False),
00023 MCDBArticleID = cms.int32(0),
00024
00025 PythiaParameters = cms.PSet(
00026
00027 pythiaCMSDefaults = cms.vstring('PMAS(5,1)=4.4 ! b quarks mass',
00028 'PMAS(6,1)=174.2 ! t quarks mass',
00029 'MSTJ(1)=1 !...Fragmentation/hadronization on or off',
00030 'MSTJ(11)=3 ! Choice of the fragmentation function',
00031 'MSTJ(22)=2 ! Decay those unstable particles',
00032 'PARJ(71)=10. ! for which ctau 10 mm',
00033 'MSTP(2)=1 ! which order running alphaS',
00034 'MSTP(33)=0 ! no K factors in hard cross sections',
00035 'MSTP(51)=7 ! structure function chosen',
00036 'MSTP(61)=1 ! Parton showering on or off',
00037 'MSTP(71)=1 !',
00038 'MSTP(81)=1 ! multiple parton interactions 1 is Pythia default',
00039 'MSTP(82)=4 ! Defines the multi-parton model',
00040 'MSTP(143)=0 ! MUST BE 1 FOR THE MATCHING ROUTINE TO RUN!!!!',
00041 'MSTU(21)=1 ! Check on possible errors during program execution',
00042 'PARP(82)=1.9 ! pt cutoff for multiparton interactions',
00043 'PARP(89)=1000. ! 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)=1. ! amount of initial-state radiation',
00048 'PARP(85)=0.33 ! gluon prod. mechanism in MI',
00049 'PARP(86)=0.66 ! gluon prod. mechanism in MI',
00050 'PARP(87)=0.7 ! ',
00051 'PARP(88)=0.5 ! ',
00052 'PARP(91)=1.0 ! kt distribution',
00053 'MSEL=0 ! User defined processes/Full user control'),
00054
00055
00056 parameterSets = cms.vstring('pythiaCMSDefaults')
00057 )
00058 )
00059
00060