File indexing completed on 2024-04-06 12:03:35
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from Configuration.Generator.PythiaUESettings_cfi import *
0004 generator = cms.EDFilter("Pythia6GeneratorFilter",
0005 pythiaPylistVerbosity = cms.untracked.int32(0),
0006
0007 filterEfficiency = cms.untracked.double(1.0),
0008 pythiaHepMCVerbosity = cms.untracked.bool(False),
0009
0010 crossSection = cms.untracked.double(6.01),
0011 comEnergy = cms.double(10000.0),
0012 maxEventsToPrint = cms.untracked.int32(0),
0013 PythiaParameters = cms.PSet(
0014 pythiaUESettingsBlock,
0015 processParameters = cms.vstring('MSEL=39 ! All SUSY processes ',
0016 'IMSS(1) = 11 ! Spectrum from external SLHA file',
0017 'IMSS(21) = 33 ! LUN number for SLHA File (must be 33) ',
0018 'IMSS(22) = 33 ! Read-in SLHA decay table '),
0019
0020 parameterSets = cms.vstring('pythiaUESettings',
0021 'processParameters',
0022 'SLHAParameters'),
0023 SLHAParameters = cms.vstring("SLHAFILE = \'Configuration/Generator/data/CSA07SUSYBSM_LM5_isasdkpyt_slha.out\' ! Name of the SLHA spectrum file")
0024 )
0025 )