CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
LM1_cfi.py
Go to the documentation of this file.
2 
4 generator = cms.EDFilter("Pythia6GeneratorFilter",
5  pythiaPylistVerbosity = cms.untracked.int32(0),
6  # put here the efficiency of your filter (1. if no filter)
7  filterEfficiency = cms.untracked.double(1.0),
8  pythiaHepMCVerbosity = cms.untracked.bool(False),
9  # put here the cross section of your process (in pb)
10  crossSection = cms.untracked.double(42.11),
11  maxEventsToPrint = cms.untracked.int32(0),
12  comEnergy = cms.double(10000.0),
13  PythiaParameters = cms.PSet(
14  pythiaUESettingsBlock,
15  processParameters = cms.vstring('MSEL=39 ! All SUSY processes ',
16  'IMSS(1) = 11 ! Spectrum from external SLHA file',
17  'IMSS(21) = 33 ! LUN number for SLHA File (must be 33) ',
18  'IMSS(22) = 33 ! Read-in SLHA decay table '),
19  # This is a vector of ParameterSet names to be read, in this order
20  parameterSets = cms.vstring('pythiaUESettings',
21  'processParameters',
22  'SLHAParameters'),
23  SLHAParameters = cms.vstring("SLHAFILE = \'Configuration/Generator/data/CSA07SUSYBSM_LM1_isasdkpyt_slha.out\' ! Name of the SLHA spectrum file")
24  )
25 )