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.MCTunes2017.PythiaCP5Settings_cfi import *
0004 
0005 generator = cms.EDFilter("Pythia8ConcurrentGeneratorFilter",
0006                          pythiaPylistVerbosity = cms.untracked.int32(1),
0007                          # put here the efficiency of your filter (1. if no filter)
0008                          filterEfficiency = cms.untracked.double(1.0),
0009                          pythiaHepMCVerbosity = cms.untracked.bool(False),
0010                          # put here the cross section of your process (in pb)
0011                          crossSection = cms.untracked.double(0.05),
0012                          comEnergy = cms.double(14000.0),
0013                          maxEventsToPrint = cms.untracked.int32(3),
0014                          PythiaParameters = cms.PSet(
0015         pythia8CommonSettingsBlock,
0016         pythia8CP5SettingsBlock,                     
0017         processParameters = cms.vstring(
0018             'HiggsSM:gg2H = on',
0019             '25:onMode = off',
0020             '25:onIfMatch = 22 22',
0021             ),
0022         parameterSets = cms.vstring('pythia8CommonSettings',
0023                                     'pythia8CP5Settings',
0024                                     'processParameters',
0025                                     )
0026         )
0027                          )
0028