Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 09:38:27

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 # Z decays
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     pythiaPylistVerbosity = cms.untracked.int32(1),
0012     # put here the efficiency of your filter (1. if no filter)
0013     filterEfficiency = cms.untracked.double(1.0),
0014     pythiaHepMCVerbosity = cms.untracked.bool(False),
0015     # put here the cross section of your process (in pb)
0016     crossSection = cms.untracked.double(4.3),
0017     comEnergy = cms.double(10000.0),
0018     maxEventsToPrint = cms.untracked.int32(3),
0019     PythiaParameters = cms.PSet(
0020         pythiaUESettingsBlock,
0021         processParameters = cms.vstring('PMAS(25,1)=120.0        !mass of Higgs', 
0022             'MSEL=0                  ! user selection for process', 
0023             'MSUB(123)=1             !ZZ fusion to H', 
0024             'MSUB(124)=1             !WW fusion to H', 
0025             'MDME(174,1)=0           !Z decay into d dbar', 
0026             'MDME(175,1)=0           !Z decay into u ubar', 
0027             'MDME(176,1)=0           !Z decay into s sbar', 
0028             'MDME(177,1)=0           !Z decay into c cbar', 
0029             'MDME(178,1)=0           !Z decay into b bbar', 
0030             'MDME(179,1)=0           !Z decay into t tbar', 
0031             'MDME(182,1)=0           !Z decay into e- e+', 
0032             'MDME(183,1)=1           !Z decay into nu_e nu_ebar', 
0033             'MDME(184,1)=0           !Z decay into mu- mu+', 
0034             'MDME(185,1)=0           !Z decay into nu_mu nu_mubar', 
0035             'MDME(186,1)=0           !Z decay into tau- tau+', 
0036             'MDME(187,1)=0           !Z decay into nu_tau nu_taubar', 
0037             'MDME(210,1)=0           !Higgs decay into dd', 
0038             'MDME(211,1)=0           !Higgs decay into uu', 
0039             'MDME(212,1)=0           !Higgs decay into ss', 
0040             'MDME(213,1)=0           !Higgs decay into cc', 
0041             'MDME(214,1)=0           !Higgs decay into bb', 
0042             'MDME(215,1)=0           !Higgs decay into tt', 
0043             'MDME(216,1)=0           !Higgs decay into', 
0044             'MDME(217,1)=0           !Higgs decay into Higgs decay', 
0045             'MDME(218,1)=0           !Higgs decay into e nu e', 
0046             'MDME(219,1)=0           !Higgs decay into mu nu mu', 
0047             'MDME(220,1)=0           !Higgs decay into tau nu tau', 
0048             'MDME(221,1)=0           !Higgs decay into Higgs decay', 
0049             'MDME(222,1)=0           !Higgs decay into g g', 
0050             'MDME(223,1)=0           !Higgs decay into gam gam', 
0051             'MDME(224,1)=0           !Higgs decay into gam Z', 
0052             'MDME(225,1)=1           !Higgs decay into Z Z', 
0053             'MDME(226,1)=0           !Higgs decay into W W'),
0054         # This is a vector of ParameterSet names to be read, in this order
0055         parameterSets = cms.vstring('pythiaUESettings', 
0056             'processParameters')
0057     )
0058 )