File indexing completed on 2024-04-06 12:03:34
0001
0002
0003
0004
0005
0006
0007 import FWCore.ParameterSet.Config as cms
0008
0009 from Configuration.Generator.PythiaUESettings_cfi import *
0010 from GeneratorInterface.ExternalDecays.TauolaSettings_cff import *
0011 generator = cms.EDFilter("Pythia6GeneratorFilter",
0012 pythiaHepMCVerbosity = cms.untracked.bool(False),
0013 maxEventsToPrint = cms.untracked.int32(0),
0014 pythiaPylistVerbosity = cms.untracked.int32(0),
0015 filterEfficiency = cms.untracked.double(1.0),
0016 comEnergy = cms.double(10000.0),
0017 ExternalDecays = cms.PSet(
0018 Tauola = cms.untracked.PSet(
0019 TauolaPolar,
0020 TauolaDefaultInputCards
0021 ),
0022 parameterSets = cms.vstring('Tauola')
0023 ),
0024 PythiaParameters = cms.PSet(
0025 pythiaUESettingsBlock,
0026 processParameters = cms.vstring('MSEL = 0 ! user control',
0027 'MSUB(401) = 1 ! gg->tbH+ Registered by Alexandre.Nikitenko@cern.ch',
0028 'MSUB(402) = 1 ! qq->tbH+ Registered by Alexandre.Nikitenko@cern.ch',
0029 'IMSS(1)= 1 ! MSSM ',
0030 'RMSS(5) = 30. ! TANBETA',
0031 'RMSS(19) = 200. ! (D=850.) m_A',
0032 'MDME(503,1)=0 !Higgs(H+) decay into dbar u',
0033 'MDME(504,1)=0 !Higgs(H+) decay into sbar c',
0034 'MDME(505,1)=0 !Higgs(H+) decay into bbar t',
0035 'MDME(506,1)=0 !Higgs(H+) decay into b bar t',
0036 'MDME(507,1)=0 !Higgs(H+) decay into e+ nu_e',
0037 'MDME(508,1)=0 !Higgs(H+) decay into mu+ nu_mu',
0038 'MDME(509,1)=1 !Higgs(H+) decay into tau+ nu_tau',
0039 'MDME(510,1)=0 !Higgs(H+) decay into tau prime+ nu_tau',
0040 'MDME(511,1)=0 !Higgs(H+) decay into W+ h0',
0041 'MDME(512,1)=0 !Higgs(H+) decay into ~chi_10 ~chi_1+',
0042 'MDME(513,1)=0 !Higgs(H+) decay into ~chi_10 ~chi_2+',
0043 'MDME(514,1)=0 !Higgs(H+) decay into ~chi_20 ~chi_1+',
0044 'MDME(515,1)=0 !Higgs(H+) decay into ~chi_20 ~chi_2+',
0045 'MDME(516,1)=0 !Higgs(H+) decay into ~chi_30 ~chi_1+',
0046 'MDME(517,1)=0 !Higgs(H+) decay into ~chi_30 ~chi_2+',
0047 'MDME(518,1)=0 !Higgs(H+) decay into ~chi_40 ~chi_1+',
0048 'MDME(519,1)=0 !Higgs(H+) decay into ~chi_40 ~chi_2+',
0049 'MDME(520,1)=0 !Higgs(H+) decay into ~t_1 ~b_1bar',
0050 'MDME(521,1)=0 !Higgs(H+) decay into ~t_2 ~b_1bar',
0051 'MDME(522,1)=0 !Higgs(H+) decay into ~t_1 ~b_2bar',
0052 'MDME(523,1)=0 !Higgs(H+) decay into ~t_2 ~b_2bar',
0053 'MDME(524,1)=0 !Higgs(H+) decay into ~d_Lbar ~u_L',
0054 'MDME(525,1)=0 !Higgs(H+) decay into ~s_Lbar ~c_L',
0055 'MDME(526,1)=0 !Higgs(H+) decay into ~e_L+ ~nu_eL',
0056 'MDME(527,1)=0 !Higgs(H+) decay into ~mu_L+ ~nu_muL',
0057 'MDME(528,1)=0 !Higgs(H+) decay into ~tau_1+ ~nu_tauL',
0058 'MDME(529,1)=0 !Higgs(H+) decay into ~tau_2+ ~nu_tauL',
0059 'MDME(89,1) = 0 ! no tau->electron',
0060 'MDME(90,1) = 0 ! no tau->muon'),
0061
0062 parameterSets = cms.vstring('pythiaUESettings',
0063 'processParameters',
0064 'pythiaMSSMmhmax'),
0065 pythiaMSSMmhmax = cms.vstring('RMSS(2)= 200. ! SU(2) gaugino mass ',
0066 'RMSS(3)= 800. ! SU(3) (gluino) mass ',
0067 'RMSS(4)= 200. ! higgsino mass parameter',
0068 'RMSS(6)= 1000. ! left slepton mass',
0069 'RMSS(7)= 1000. ! right slepton mass',
0070 'RMSS(8)= 1000. ! right slepton mass',
0071 'RMSS(9)= 1000. ! right squark mass',
0072 'RMSS(10)= 1000. ! left sq mass for 3th gen/heaviest stop mass',
0073 'RMSS(11)= 1000. ! right sbottom mass/lightest sbotoom mass',
0074 'RMSS(12)= 1000. ! right stop mass/lightest stop mass',
0075 'RMSS(13)= 1000. ! left stau mass',
0076 'RMSS(14)= 1000. ! right stau mass',
0077 'RMSS(15)= 2449. ! Ab',
0078 'RMSS(16)= 2449. ! At',
0079 'RMSS(17)= 2449. ! Atau')
0080 )
0081 )