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 from Configuration.Generator.Pythia8CommonSettings_cfi import *
0003 from Configuration.Generator.Pythia8CUEP8M1Settings_cfi import *
0004 generator = cms.EDFilter("Pythia8ConcurrentGeneratorFilter",
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(0.325),
0011                          maxEventsToPrint = cms.untracked.int32(3),
0012                          comEnergy = cms.double(8000.0),
0013                          PythiaParameters = cms.PSet(
0014         pythia8CommonSettingsBlock,
0015         pythia8CUEP8M1SettingsBlock,
0016         processParameters = cms.vstring(
0017             'HiggsSM:gg2H = on',
0018             'HiggsSM:ff2Hff(t:WW) = on',
0019             'HiggsSM:ff2Hff(t:ZZ) = on ',
0020             '25:m0 = 165'
0021             '25:onMode = off',
0022             '25:onIfAny = 24 24',
0023             '24:onMode = off',
0024             '24:onMode = 11',
0025             '24:onMode = 13',
0026             '24:onMode = 15',
0027             ),
0028         parameterSets = cms.vstring('pythia8CommonSettings',
0029                                     'pythia8CUEP8M1Settings',
0030                                     'processParameters',
0031                                     )
0032         )
0033                          )
0034