File indexing completed on 2024-04-06 12:03:37
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from Configuration.Generator.TTbar_Pow_LHE_13TeV_cff import externalLHEProducer
0004 from Configuration.Generator.Herwig7Settings.Herwig7CH3TuneSettings_cfi import *
0005 from Configuration.Generator.Herwig7Settings.Herwig7StableParticlesForDetector_cfi import *
0006 from Configuration.Generator.Herwig7Settings.Herwig7LHECommonSettings_cfi import *
0007 from Configuration.Generator.Herwig7Settings.Herwig7LHEPowhegSettings_cfi import *
0008
0009
0010 generator = cms.EDFilter("Herwig7HadronizerFilter",
0011 herwig7CH3SettingsBlock,
0012 herwig7StableParticlesForDetectorBlock,
0013 herwig7LHECommonSettingsBlock,
0014 herwig7LHEPowhegSettingsBlock,
0015 configFiles = cms.vstring(),
0016 parameterSets = cms.vstring(
0017 'herwig7CH3PDF',
0018 'herwig7CH3AlphaS',
0019 'herwig7CH3MPISettings',
0020 'herwig7StableParticlesForDetector',
0021 'hw_lhe_common_settings',
0022 'hw_lhe_powheg_settings'),
0023 crossSection = cms.untracked.double(-1),
0024 dataLocation = cms.string('${HERWIGPATH:-6}'),
0025 eventHandlers = cms.string('/Herwig/EventHandlers'),
0026 filterEfficiency = cms.untracked.double(1.0),
0027 generatorModule = cms.string('/Herwig/Generators/EventGenerator'),
0028 repository = cms.string('${HERWIGPATH}/HerwigDefaults.rpo'),
0029 run = cms.string('InterfaceMatchboxTest'),
0030 runModeList = cms.untracked.string("read,run"),
0031 seed = cms.untracked.int32(12345)
0032 )
0033
0034
0035 ProductionFilterSequence = cms.Sequence(generator)