File indexing completed on 2024-04-06 12:03:35
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from Configuration.Generator.HerwigppDefaults_cfi import *
0004 from Configuration.Generator.HerwigppUE_EE_5C_cfi import *
0005 from Configuration.Generator.HerwigppPDF_CTEQ6_LO_cfi import *
0006 from Configuration.Generator.HerwigppEnergy_13TeV_cfi import *
0007 from Configuration.Generator.HerwigppMECorrections_cfi import *
0008 from Configuration.Generator.HerwigppReshuffle_RestMostOffShell_cfi import *
0009
0010 generator = cms.EDFilter("ThePEGGeneratorFilter",
0011 herwigDefaultsBlock,
0012 herwigppUESettingsBlock,
0013 herwigppPDFSettingsBlock,
0014 herwigppEnergySettingsBlock,
0015 herwigppMECorrectionsSettingsBlock,
0016 herwigppReshuffleSettingsBlock,
0017
0018 configFiles = cms.vstring(),
0019 parameterSets = cms.vstring(
0020 'hwpp_cmsDefaults',
0021 'hwpp_ue_EE5C',
0022 'hwpp_pdf_CTEQ6L1',
0023 'hwpp_cm_13TeV',
0024 'hwpp_MECorr_Off',
0025 'hwpp_reshuffle_RestMostOffShell',
0026 'ttbarprocess',
0027
0028 ),
0029
0030 ttbarprocess = cms.vstring(
0031 'insert /Herwig/MatrixElements/SimpleQCD:MatrixElements[0] /Herwig/MatrixElements/MEHeavyQuark',
0032 ),
0033
0034 crossSection = cms.untracked.double(-1),
0035 filterEfficiency = cms.untracked.double(1.0),
0036 )
0037 ProductionFilterSequence = cms.Sequence(generator)