CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/Configuration/Generator/python/H130GGgluonfusion_cfi.py

Go to the documentation of this file.
00001 # The following comments couldn't be translated into the new config version:
00002 
00003 # Higgs decays
00004 
00005 import FWCore.ParameterSet.Config as cms
00006 
00007 from Configuration.Generator.PythiaUESettings_cfi import *
00008 Generator = cms.EDFilter("Pythia6GeneratorFilter",
00009     pythiaPylistVerbosity = cms.untracked.int32(1),
00010     # put here the efficiency of your filter (1. if no filter)
00011     filterEfficiency = cms.untracked.double(1.0),
00012     pythiaHepMCVerbosity = cms.untracked.bool(False),
00013     # put here the cross section of your process (in pb)
00014     crossSection = cms.untracked.double(0.05),
00015     comEnergy = cms.double(10000.0),
00016     maxEventsToPrint = cms.untracked.int32(3),
00017     PythiaParameters = cms.PSet(
00018         pythiaUESettingsBlock,
00019         processParameters = cms.vstring('PMAS(25,1)=130.0      !mass of Higgs', 
00020             'MSEL=0                  ! user selection for process', 
00021             'MSUB(102)=1             !ggH', 
00022             'MSUB(123)=0             !ZZ fusion to H', 
00023             'MSUB(124)=0             !WW fusion to H', 
00024             'MSUB(24)=0              !ZH production', 
00025             'MSUB(26)=0              !WH production', 
00026             'MSUB(121)=0             !gg to ttH', 
00027             'MSUB(122)=0             !qq to ttH', 
00028             'MDME(210,1)=0           !Higgs decay into dd', 
00029             'MDME(211,1)=0           !Higgs decay into uu', 
00030             'MDME(212,1)=0           !Higgs decay into ss', 
00031             'MDME(213,1)=0           !Higgs decay into cc', 
00032             'MDME(214,1)=0           !Higgs decay into bb', 
00033             'MDME(215,1)=0           !Higgs decay into tt', 
00034             'MDME(216,1)=0           !Higgs decay into', 
00035             'MDME(217,1)=0           !Higgs decay into Higgs decay', 
00036             'MDME(218,1)=0           !Higgs decay into e nu e', 
00037             'MDME(219,1)=0           !Higgs decay into mu nu mu', 
00038             'MDME(220,1)=0           !Higgs decay into tau nu tau', 
00039             'MDME(221,1)=0           !Higgs decay into Higgs decay', 
00040             'MDME(222,1)=0           !Higgs decay into g g', 
00041             'MDME(223,1)=1           !Higgs decay into gam gam', 
00042             'MDME(224,1)=0           !Higgs decay into gam Z', 
00043             'MDME(225,1)=0           !Higgs decay into Z Z', 
00044             'MDME(226,1)=0           !Higgs decay into W W'),
00045         # This is a vector of ParameterSet names to be read, in this order
00046         parameterSets = cms.vstring('pythiaUESettings', 
00047             'processParameters')
00048     )
00049 )