1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import FWCore.ParameterSet.Config as cms
PythiaMSSMmhmax = cms.vstring(
'RMSS(2)= 200. ! SU(2) gaugino mass ',
'RMSS(3)= 800. ! SU(3) (gluino) mass ',
'RMSS(4)= 200. ! higgsino mass parameter',
'RMSS(6)= 1000. ! left slepton mass',
'RMSS(7)= 1000. ! right slepton mass',
'RMSS(8)= 1000. ! right slepton mass',
'RMSS(9)= 1000. ! right squark mass',
'RMSS(10)= 1000. ! left sq mass for 3th gen/heaviest stop mass',
'RMSS(11)= 1000. ! right sbottom mass/lightest sbotoom mass',
'RMSS(12)= 1000. ! right stop mass/lightest stop mass',
'RMSS(13)= 1000. ! left stau mass',
'RMSS(14)= 1000. ! right stau mass',
'RMSS(15)= 2449. ! Ab',
'RMSS(16)= 2449. ! At',
'RMSS(17)= 2449. ! Atau'
)
|