Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 import FWCore.ParameterSet.Config as cms
00010
00011 from Configuration.Generator.PythiaUESettings_cfi import *
00012 source = cms.Source("PythiaSource",
00013 pythiaPylistVerbosity = cms.untracked.int32(0),
00014 maxEvents = cms.untracked.int32(0),
00015 pythiaHepMCVerbosity = cms.untracked.bool(False),
00016 comEnergy = cms.untracked.double(14000.0),
00017 maxEventsToPrint = cms.untracked.int32(0),
00018 PythiaParameters = cms.PSet(
00019 pythiaUESettingsBlock,
00020 processParameters = cms.vstring('MSEL=39 ! All SUSY processes ',
00021 'IMSS(1) = 11 ! Spectrum from external SLHA file',
00022 'IMSS(21) = 33 ! LUN number for SLHA File (must be 33) ',
00023 'IMSS(22) = 33',
00024 'IMSS(11) = 1 ! gravitino as LSP ',
00025 'RMSS(21) = 4000000 ! gravitino mass in eV'),
00026
00027 parameterSets = cms.vstring('pythiaUESettings',
00028 'pythia',
00029 'processParameters',
00030 'SLHAParameters'),
00031 pythia = cms.vstring('MSTP(128) = 2',
00032 'MSTJ(22) = 1'),
00033 SLHAParameters = cms.vstring('SLHAFILE = "isa-slha.out" ')
00034 )
00035 )
00036
00037