Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:49:01

0001 import FWCore.ParameterSet.Config as cms
0002 from Configuration.Generator.Pythia8CommonSettings_cfi import *
0003 from Configuration.Generator.MCTunes2017.PythiaCP5Settings_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                          comEnergy = cms.double(14000.0),
0009                          pythiaHepMCVerbosity = cms.untracked.bool(False),
0010                          # put here the cross section of your process (in pb)
0011                          crossSection = cms.untracked.double(0.388),
0012                          maxEventsToPrint = cms.untracked.int32(0),
0013                          PythiaParameters = cms.PSet(
0014         pythia8CommonSettingsBlock,
0015         pythia8CP5SettingsBlock,
0016         processParameters = cms.vstring(
0017             #'HiggsSM:gg2H = on',
0018             'HiggsSM:ff2Hff(t:WW) = on',
0019             'HiggsSM:ff2Hff(t:ZZ) = on',
0020             '25:m0 = 125',
0021             '25:onMode = off',
0022             '25:onIfAny = 15',
0023             ),
0024         parameterSets = cms.vstring('pythia8CommonSettings',
0025                                     'pythia8CP5Settings',
0026                                     'processParameters',
0027                                     )
0028         )
0029                          )
0030