1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# The following comments couldn't be translated into the new config version:
# "TAUO = 0 0 ! Registered by Alexandre.Nikitenko@cern.ch",
# higgs decays
import FWCore.ParameterSet.Config as cms
from Configuration.Generator.PythiaUESettings_cfi import *
generator = cms.EDFilter("Pythia6GeneratorFilter",
pythiaHepMCVerbosity = cms.untracked.bool(False),
maxEventsToPrint = cms.untracked.int32(0),
pythiaPylistVerbosity = cms.untracked.int32(0),
filterEfficiency = cms.untracked.double(1.0),
comEnergy = cms.double(10000.0),
PythiaParameters = cms.PSet(
pythiaUESettingsBlock,
processParameters = cms.vstring('MSEL = 0 ! user control',
'MSUB(401) = 1 ! gg->tbH+ Registered by Alexandre.Nikitenko@cern.ch',
'MSUB(402) = 1 ! qq->tbH+ Registered by Alexandre.Nikitenko@cern.ch',
'IMSS(1)= 1 ! MSSM ',
'RMSS(5) = 30. ! TANBETA',
'RMSS(19) = 200. ! (D=850.) m_A',
'MDME(503,1)=0 !Higgs(H+) decay into dbar u',
'MDME(504,1)=0 !Higgs(H+) decay into sbar c',
'MDME(505,1)=0 !Higgs(H+) decay into bbar t',
'MDME(506,1)=0 !Higgs(H+) decay into b bar t',
'MDME(507,1)=0 !Higgs(H+) decay into e+ nu_e',
'MDME(508,1)=0 !Higgs(H+) decay into mu+ nu_mu',
'MDME(509,1)=1 !Higgs(H+) decay into tau+ nu_tau',
'MDME(510,1)=0 !Higgs(H+) decay into tau prime+ nu_tau',
'MDME(511,1)=0 !Higgs(H+) decay into W+ h0',
'MDME(512,1)=0 !Higgs(H+) decay into ~chi_10 ~chi_1+',
'MDME(513,1)=0 !Higgs(H+) decay into ~chi_10 ~chi_2+',
'MDME(514,1)=0 !Higgs(H+) decay into ~chi_20 ~chi_1+',
'MDME(515,1)=0 !Higgs(H+) decay into ~chi_20 ~chi_2+',
'MDME(516,1)=0 !Higgs(H+) decay into ~chi_30 ~chi_1+',
'MDME(517,1)=0 !Higgs(H+) decay into ~chi_30 ~chi_2+',
'MDME(518,1)=0 !Higgs(H+) decay into ~chi_40 ~chi_1+',
'MDME(519,1)=0 !Higgs(H+) decay into ~chi_40 ~chi_2+',
'MDME(520,1)=0 !Higgs(H+) decay into ~t_1 ~b_1bar',
'MDME(521,1)=0 !Higgs(H+) decay into ~t_2 ~b_1bar',
'MDME(522,1)=0 !Higgs(H+) decay into ~t_1 ~b_2bar',
'MDME(523,1)=0 !Higgs(H+) decay into ~t_2 ~b_2bar',
'MDME(524,1)=0 !Higgs(H+) decay into ~d_Lbar ~u_L',
'MDME(525,1)=0 !Higgs(H+) decay into ~s_Lbar ~c_L',
'MDME(526,1)=0 !Higgs(H+) decay into ~e_L+ ~nu_eL',
'MDME(527,1)=0 !Higgs(H+) decay into ~mu_L+ ~nu_muL',
'MDME(528,1)=0 !Higgs(H+) decay into ~tau_1+ ~nu_tauL',
'MDME(529,1)=0 !Higgs(H+) decay into ~tau_2+ ~nu_tauL',
'MDME(89,1) = 0 ! no tau->electron',
'MDME(90,1) = 0 ! no tau->muon'),
# This is a vector of ParameterSet names to be read, in this order
parameterSets = cms.vstring('pythiaUESettings',
'processParameters',
'pythiaMSSMmhmax'),
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')
)
)
|