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 # Higgs decays
0004 
0005 import FWCore.ParameterSet.Config as cms
0006 
0007 from Configuration.Generator.PythiaUEZ2starSettings_cfi import *
0008 generator = cms.EDFilter("Pythia6GeneratorFilter",
0009     pythiaPylistVerbosity = cms.untracked.int32(1),
0010     # put here the efficiency of your filter (1. if no filter)
0011     filterEfficiency = cms.untracked.double(1.0),
0012     pythiaHepMCVerbosity = cms.untracked.bool(False),
0013     # put here the cross section of your process (in pb)
0014     crossSection = cms.untracked.double(0.05),
0015     comEnergy = cms.double(13000.0),
0016     maxEventsToPrint = cms.untracked.int32(3),
0017     PythiaParameters = cms.PSet(
0018         pythiaUESettingsBlock,
0019         processParameters = cms.vstring('PMAS(25,1)=130.0      !mass of Higgs', 
0020             'MSEL=0                  ! user selection for process', 
0021             'MSUB(102)=1             !ggH', 
0022             'MSUB(123)=0             !ZZ fusion to H', 
0023             'MSUB(124)=0             !WW fusion to H', 
0024             'MSUB(24)=0              !ZH production', 
0025             'MSUB(26)=0              !WH production', 
0026             'MSUB(121)=0             !gg to ttH', 
0027             'MSUB(122)=0             !qq to ttH', 
0028             'MDME(210,1)=0           !Higgs decay into dd', 
0029             'MDME(211,1)=0           !Higgs decay into uu', 
0030             'MDME(212,1)=0           !Higgs decay into ss', 
0031             'MDME(213,1)=0           !Higgs decay into cc', 
0032             'MDME(214,1)=0           !Higgs decay into bb', 
0033             'MDME(215,1)=0           !Higgs decay into tt', 
0034             'MDME(216,1)=0           !Higgs decay into', 
0035             'MDME(217,1)=0           !Higgs decay into Higgs decay', 
0036             'MDME(218,1)=0           !Higgs decay into e nu e', 
0037             'MDME(219,1)=0           !Higgs decay into mu nu mu', 
0038             'MDME(220,1)=0           !Higgs decay into tau nu tau', 
0039             'MDME(221,1)=0           !Higgs decay into Higgs decay', 
0040             'MDME(222,1)=0           !Higgs decay into g g', 
0041             'MDME(223,1)=1           !Higgs decay into gam gam', 
0042             'MDME(224,1)=0           !Higgs decay into gam Z', 
0043             'MDME(225,1)=0           !Higgs decay into Z Z', 
0044             'MDME(226,1)=0           !Higgs decay into W W'),
0045         # This is a vector of ParameterSet names to be read, in this order
0046         parameterSets = cms.vstring('pythiaUESettings', 
0047             'processParameters')
0048     )
0049 )