import FWCore.ParameterSet.Config as cms from Configuration.Generator.Pythia8CommonSettings_cfi import * from Configuration.Generator.MCTunes2017.PythiaCP2Settings_cfi import * from Configuration.Generator.PSweightsPythia.PythiaPSweightsSettings_cfi import * generator = cms.EDFilter("Pythia8ConcurrentGeneratorFilter", comEnergy = cms.double(13000.0), maxEventsToPrint = cms.untracked.int32(0), pythiaHepMCVerbosity = cms.untracked.bool(False), pythiaPylistVerbosity = cms.untracked.int32(1), PythiaParameters = cms.PSet( pythia8CommonSettingsBlock, pythia8CP2SettingsBlock, pythia8PSweightsSettingsBlock, pdfSettings = cms.vstring('PDF:pSet = LHAPDF6:NNPDF31_lo_as_0130'), processParameters = cms.vstring( 'HiggsSM:gg2H = on', '25:m0 = 300', '25:mWidth = 16.800', '25:onMode = off', '25:OnIfMatch = 23 22', '25:doForceWidth = on', 'Higgs:clipWings = on', 'Higgs:wingsFac = 10', '23:onMode = off', '23:OnIfMatch = 11 11', '23:OnIfMatch = 13 13', '23:OnIfMatch = 15 15', ), parameterSets = cms.vstring( 'pythia8CommonSettings', 'pythia8CP2Settings', 'pythia8PSweightsSettings', 'pdfSettings', 'processParameters', ) ) ) ProductionFilterSequence = cms.Sequence(generator)