Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 from Configuration.Generator.PythiaUESettings_cfi import *
00004 Generator = cms.EDFilter("Pythia6GeneratorFilter",
00005 pythiaPylistVerbosity = cms.untracked.int32(0),
00006
00007 filterEfficiency = cms.untracked.double(1.0),
00008 pythiaHepMCVerbosity = cms.untracked.bool(False),
00009
00010 crossSection = cms.untracked.double(6.01),
00011 comEnergy = cms.double(10000.0),
00012 maxEventsToPrint = cms.untracked.int32(0),
00013 PythiaParameters = cms.PSet(
00014 pythiaUESettingsBlock,
00015 processParameters = cms.vstring('MSEL=39 ! All SUSY processes ',
00016 'IMSS(1) = 11 ! Spectrum from external SLHA file',
00017 'IMSS(21) = 33 ! LUN number for SLHA File (must be 33) ',
00018 'IMSS(22) = 33 ! Read-in SLHA decay table '),
00019
00020 parameterSets = cms.vstring('pythiaUESettings',
00021 'processParameters',
00022 'SLHAParameters'),
00023 SLHAParameters = cms.vstring("SLHAFILE = \'Configuration/Generator/data/CSA07SUSYBSM_LM5_isasdkpyt_slha.out\' ! Name of the SLHA spectrum file")
00024 )
00025 )