Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:35

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from Configuration.Generator.PythiaUEZ2starSettings_cfi import *
0004 generator = cms.EDFilter("Pythia6GeneratorFilter",
0005     pythiaPylistVerbosity = cms.untracked.int32(0),
0006     # put here the efficiency of your filter (1. if no filter)
0007     filterEfficiency = cms.untracked.double(1.0),
0008     pythiaHepMCVerbosity = cms.untracked.bool(False),
0009     # put here the cross section of your process (in pb)
0010     crossSection = cms.untracked.double(42.11),
0011     maxEventsToPrint = cms.untracked.int32(0),
0012     comEnergy = cms.double(14000.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         # This is a vector of ParameterSet names to be read, in this order
0020         parameterSets = cms.vstring('pythiaUESettings', 
0021             'processParameters', 
0022             'SLHAParameters'),
0023         SLHAParameters = cms.vstring("SLHAFILE = \'Configuration/Generator/data/CSA07SUSYBSM_LM1_sftsdkpyt_slha.out\'           ! Name of the SLHA spectrum file")
0024     )
0025 )