CMS 3D CMS Logo

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