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.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(4.3),
0011                          comEnergy = cms.double(8000.0),
0012                          maxEventsToPrint = cms.untracked.int32(3),
0013                          PythiaParameters = cms.PSet(
0014         pythia8CommonSettingsBlock,
0015         pythia8CUEP8M1SettingsBlock,
0016         processParameters = cms.vstring( 'HiggsSM:ff2Hff(t:WW) = on',
0017                                          'HiggsSM:ff2Hff(t:ZZ) = on ',
0018                                          'HiggsSM:NLOWidths = on ',
0019                                          '25:m0 = 120',
0020                                          '25:onMode = off',
0021                                          '25:onIfAny = 23',
0022                                          '23:onMode = off',
0023                                          '23:onIfAny = 12'
0024                                          ),
0025         parameterSets = cms.vstring('pythia8CommonSettings',
0026                                     'pythia8CUEP8M1Settings',
0027                                     'processParameters',
0028                                     )
0029         )
0030                          )
0031