Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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