00001
00002
00003
00004
00005
00006
00007 import FWCore.ParameterSet.Config as cms
00008
00009 from Configuration.Generator.PythiaUESettings_cfi import *
00010 from GeneratorInterface.Pythia6Interface.TauolaSettings_cff import *
00011 source = cms.Source("PythiaSource",
00012 pythiaHepMCVerbosity = cms.untracked.bool(False),
00013 maxEventsToPrint = cms.untracked.int32(0),
00014 pythiaPylistVerbosity = cms.untracked.int32(0),
00015 filterEfficiency = cms.untracked.double(1.0),
00016 comEnergy = cms.untracked.double(10000.0),
00017 ExternalGenerators = cms.PSet(
00018 Tauola = cms.untracked.PSet(
00019 TauolaPolar,
00020 TauolaDefaultInputCards
00021 ),
00022 parameterSets = cms.vstring('Tauola')
00023 ),
00024 UseExternalGenerators = cms.untracked.bool(True),
00025 PythiaParameters = cms.PSet(
00026 pythiaUESettingsBlock,
00027 processParameters = cms.vstring('MSEL = 0 ! user control',
00028 'MSUB(401) = 1 ! gg->tbH+ Registered by Alexandre.Nikitenko@cern.ch',
00029 'MSUB(402) = 1 ! qq->tbH+ Registered by Alexandre.Nikitenko@cern.ch',
00030 'IMSS(1)= 1 ! MSSM ',
00031 'RMSS(5) = 30. ! TANBETA',
00032 'RMSS(19) = 200. ! (D=850.) m_A',
00033 'MDME(503,1)=0 !Higgs(H+) decay into dbar u',
00034 'MDME(504,1)=0 !Higgs(H+) decay into sbar c',
00035 'MDME(505,1)=0 !Higgs(H+) decay into bbar t',
00036 'MDME(506,1)=0 !Higgs(H+) decay into b bar t',
00037 'MDME(507,1)=0 !Higgs(H+) decay into e+ nu_e',
00038 'MDME(508,1)=0 !Higgs(H+) decay into mu+ nu_mu',
00039 'MDME(509,1)=1 !Higgs(H+) decay into tau+ nu_tau',
00040 'MDME(510,1)=0 !Higgs(H+) decay into tau prime+ nu_tau',
00041 'MDME(511,1)=0 !Higgs(H+) decay into W+ h0',
00042 'MDME(512,1)=0 !Higgs(H+) decay into ~chi_10 ~chi_1+',
00043 'MDME(513,1)=0 !Higgs(H+) decay into ~chi_10 ~chi_2+',
00044 'MDME(514,1)=0 !Higgs(H+) decay into ~chi_20 ~chi_1+',
00045 'MDME(515,1)=0 !Higgs(H+) decay into ~chi_20 ~chi_2+',
00046 'MDME(516,1)=0 !Higgs(H+) decay into ~chi_30 ~chi_1+',
00047 'MDME(517,1)=0 !Higgs(H+) decay into ~chi_30 ~chi_2+',
00048 'MDME(518,1)=0 !Higgs(H+) decay into ~chi_40 ~chi_1+',
00049 'MDME(519,1)=0 !Higgs(H+) decay into ~chi_40 ~chi_2+',
00050 'MDME(520,1)=0 !Higgs(H+) decay into ~t_1 ~b_1bar',
00051 'MDME(521,1)=0 !Higgs(H+) decay into ~t_2 ~b_1bar',
00052 'MDME(522,1)=0 !Higgs(H+) decay into ~t_1 ~b_2bar',
00053 'MDME(523,1)=0 !Higgs(H+) decay into ~t_2 ~b_2bar',
00054 'MDME(524,1)=0 !Higgs(H+) decay into ~d_Lbar ~u_L',
00055 'MDME(525,1)=0 !Higgs(H+) decay into ~s_Lbar ~c_L',
00056 'MDME(526,1)=0 !Higgs(H+) decay into ~e_L+ ~nu_eL',
00057 'MDME(527,1)=0 !Higgs(H+) decay into ~mu_L+ ~nu_muL',
00058 'MDME(528,1)=0 !Higgs(H+) decay into ~tau_1+ ~nu_tauL',
00059 'MDME(529,1)=0 !Higgs(H+) decay into ~tau_2+ ~nu_tauL',
00060 'MDME(89,1) = 0 ! no tau->electron',
00061 'MDME(90,1) = 0 ! no tau->muon'),
00062
00063 parameterSets = cms.vstring('pythiaUESettings',
00064 'processParameters',
00065 'pythiaMSSMmhmax'),
00066 pythiaMSSMmhmax = cms.vstring('RMSS(2)= 200. ! SU(2) gaugino mass ',
00067 'RMSS(3)= 800. ! SU(3) (gluino) mass ',
00068 'RMSS(4)= 200. ! higgsino mass parameter',
00069 'RMSS(6)= 1000. ! left slepton mass',
00070 'RMSS(7)= 1000. ! right slepton mass',
00071 'RMSS(8)= 1000. ! right slepton mass',
00072 'RMSS(9)= 1000. ! right squark mass',
00073 'RMSS(10)= 1000. ! left sq mass for 3th gen/heaviest stop mass',
00074 'RMSS(11)= 1000. ! right sbottom mass/lightest sbotoom mass',
00075 'RMSS(12)= 1000. ! right stop mass/lightest stop mass',
00076 'RMSS(13)= 1000. ! left stau mass',
00077 'RMSS(14)= 1000. ! right stau mass',
00078 'RMSS(15)= 2449. ! Ab',
00079 'RMSS(16)= 2449. ! At',
00080 'RMSS(17)= 2449. ! Atau')
00081 )
00082 )
00083
00084