CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GM1_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
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(2.865),
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  'IMSS(11) = 1 ! Set gravitino as LSP',
20  'RMSS(21) = 0 ! The gravitino mass'),
21  # This is a vector of ParameterSet names to be read, in this order
22  parameterSets = cms.vstring('pythiaUESettings',
23  'processParameters',
24  'SLHAParameters'),
25  SLHAParameters = cms.vstring("SLHAFILE = \'Configuration/Generator/data/CSA07SUSYBSM_GM1fran_isasdkpyt_slha.out\' ! Name of the SLHA spectrum file")
26  )
27 )