Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:34

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