CMS 3D CMS Logo

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