Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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                          comEnergy = cms.double(8000.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(3),
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 = 135',
0021             '25:onMode = off',
0022             '25:onIfAny = 15',
0023             ),
0024         parameterSets = cms.vstring('pythia8CommonSettings',
0025                                     'pythia8CUEP8M1Settings',
0026                                     'processParameters',
0027                                     )
0028         )
0029                          )
0030