CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pythiaGMSB_cfi.py
Go to the documentation of this file.
1 # The following comments couldn't be translated into the new config version:
2 
3 # "MSTP(61)=0", # no ISR
4 # "MSTP(71)=0", # no FSR
5 # "MSTP(81)=0", # no MPI
6 # "MSTP(111)=0", # no hadronisation
7 
8 # decay all unstable particles, regadless of their ctau
9 import FWCore.ParameterSet.Config as cms
10 
12 source = cms.Source("PythiaSource",
13  pythiaPylistVerbosity = cms.untracked.int32(0),
14  maxEvents = cms.untracked.int32(0),
15  pythiaHepMCVerbosity = cms.untracked.bool(False),
16  comEnergy = cms.untracked.double(14000.0),
17  maxEventsToPrint = cms.untracked.int32(0),
18  PythiaParameters = cms.PSet(
19  pythiaUESettingsBlock,
20  processParameters = cms.vstring('MSEL=39 ! All SUSY processes ',
21  'IMSS(1) = 11 ! Spectrum from external SLHA file',
22  'IMSS(21) = 33 ! LUN number for SLHA File (must be 33) ',
23  'IMSS(22) = 33',
24  'IMSS(11) = 1 ! gravitino as LSP ',
25  'RMSS(21) = 4000000 ! gravitino mass in eV'),
26  # This is a vector of ParameterSet names to be read, in this order
27  parameterSets = cms.vstring('pythiaUESettings',
28  'pythia',
29  'processParameters',
30  'SLHAParameters'),
31  pythia = cms.vstring('MSTP(128) = 2',
32  'MSTJ(22) = 1'),
33  SLHAParameters = cms.vstring('SLHAFILE = "isa-slha.out" ')
34  )
35 )
36 
37