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 
0003 from Configuration.Generator.DYToll01234Jets_5f_LO_MLM_Madgraph_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.Herwig7MGMergingSettings_cfi import *
0007 
0008 
0009 generator = cms.EDFilter("Herwig7HadronizerFilter",
0010     herwig7CH3SettingsBlock,
0011     herwig7StableParticlesForDetectorBlock,
0012     herwig7MGMergingSettingsBlock,
0013     configFiles = cms.vstring(),
0014     hw_user_settings = cms.vstring(
0015         'set FxFxHandler:MergeMode TreeMG5',
0016         'set FxFxHandler:njetsmax 4'
0017     ),
0018     parameterSets = cms.vstring(
0019         'herwig7CH3PDF',
0020         'herwig7CH3AlphaS',
0021         'herwig7CH3MPISettings',
0022         'herwig7StableParticlesForDetector',
0023         'hw_mg_merging_settings',
0024         'hw_user_settings'
0025         ),
0026     crossSection = cms.untracked.double(-1),
0027     dataLocation = cms.string('${HERWIGPATH:-6}'),
0028     eventHandlers = cms.string('/Herwig/EventHandlers'),
0029     filterEfficiency = cms.untracked.double(1.0),
0030     generatorModule = cms.string('/Herwig/Generators/EventGenerator'),
0031     repository = cms.string('${HERWIGPATH}/HerwigDefaults.rpo'),
0032     run = cms.string('InterfaceMatchboxTest'),
0033     runModeList = cms.untracked.string("read,run"),
0034     seed = cms.untracked.int32(12345)
0035 )
0036 
0037 
0038 ProductionFilterSequence = cms.Sequence(generator)