CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10/src/SimG4Core/CustomPhysics/python/pythiaGMSB_cfi.py

Go to the documentation of this file.
00001 # The following comments couldn't be translated into the new config version:
00002 
00003 #       "MSTP(61)=0",   # no ISR
00004 #       "MSTP(71)=0",   # no FSR
00005 #       "MSTP(81)=0",   # no MPI
00006 #       "MSTP(111)=0", # no hadronisation
00007 
00008 # decay all unstable particles, regadless of their ctau
00009 import FWCore.ParameterSet.Config as cms
00010 
00011 from Configuration.Generator.PythiaUESettings_cfi import *
00012 source = cms.Source("PythiaSource",
00013     pythiaPylistVerbosity = cms.untracked.int32(0),
00014     maxEvents = cms.untracked.int32(0),
00015     pythiaHepMCVerbosity = cms.untracked.bool(False),
00016     comEnergy = cms.untracked.double(14000.0),
00017     maxEventsToPrint = cms.untracked.int32(0),
00018     PythiaParameters = cms.PSet(
00019         pythiaUESettingsBlock,
00020         processParameters = cms.vstring('MSEL=39                  ! All SUSY processes ', 
00021             'IMSS(1) = 11             ! Spectrum from external SLHA file', 
00022             'IMSS(21) = 33            ! LUN number for SLHA File (must be 33) ', 
00023             'IMSS(22) = 33', 
00024             'IMSS(11) = 1             ! gravitino as LSP ', 
00025             'RMSS(21) = 4000000       ! gravitino mass in eV'),
00026         # This is a vector of ParameterSet names to be read, in this order
00027         parameterSets = cms.vstring('pythiaUESettings', 
00028             'pythia', 
00029             'processParameters', 
00030             'SLHAParameters'),
00031         pythia = cms.vstring('MSTP(128) = 2', 
00032             'MSTJ(22) = 1'),
00033         SLHAParameters = cms.vstring('SLHAFILE = "isa-slha.out" ')
00034     )
00035 )
00036 
00037