CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
LM9p_7TeV_cff.py
Go to the documentation of this file.
1 
2 import FWCore.ParameterSet.Config as cms
3 
5 
6 generator = cms.EDFilter("Pythia6GeneratorFilter",
7  pythiaPylistVerbosity = cms.untracked.int32(1),
8  filterEfficiency = cms.untracked.double(1.0),
9  pythiaHepMCVerbosity = cms.untracked.bool(False),
10  comEnergy = cms.double(7000.0),
11  crossSection = cms.untracked.double(3.64),
12  maxEventsToPrint = cms.untracked.int32(0),
13  PythiaParameters = cms.PSet(
14  pythiaUESettingsBlock,
15  processParameters = cms.vstring(
16  'MSEL=39 ! All SUSY processes ',
17  'IMSS(1) = 11 ! Spectrum from external SLHA file',
18  'IMSS(21) = 33 ! LUN number for SLHA File (must be 33) ',
19  'IMSS(22) = 33 ! Read-in SLHA decay table '),
20  SLHAParameters = cms.vstring('SLHAFILE = Configuration/Generator/data/CSA07SUSYBSM_LM9p_sftsdkpyt_slha.out'),
21  parameterSets = cms.vstring('pythiaUESettings',
22  'processParameters','SLHAParameters')
23  )
24 )