CMS 3D CMS Logo

Herwig7_loadCommonSettings_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 externalLHEProducer = cms.EDProducer("ExternalLHEProducer",
4  args = cms.vstring('/cvmfs/cms.cern.ch/phys_generator/gridpacks/2017/13TeV/powheg/V2/TT_hvq/TT_hdamp_NNPDF31_NNLO_inclusive.tgz'),
5  nEvents = cms.untracked.uint32(5000),
6  numberOfParameters = cms.uint32(1),
7  outputFile = cms.string('cmsgrid_final.lhe'),
8  scriptName = cms.FileInPath('GeneratorInterface/LHEInterface/data/run_generic_tarball_cvmfs.sh')
9 )
10 
16 
17 
18 generator = cms.EDFilter("Herwig7GeneratorFilter",
19  herwig7LHECommonSettingsBlock,
20  herwig7LHEPowhegSettingsBlock,
21  herwig7PSWeightsSettingsBlock,
22  herwig7StableParticlesForDetectorBlock,
23  herwig7CH3SettingsBlock,
24  configFiles = cms.vstring(),
25  crossSection = cms.untracked.double(-1),
26  dataLocation = cms.string('${HERWIGPATH:-6}'),
27  eventHandlers = cms.string('/Herwig/EventHandlers'),
28  filterEfficiency = cms.untracked.double(1.0),
29  generatorModule = cms.string('/Herwig/Generators/EventGenerator'),
30  hw_user_settings = cms.vstring(
31  'cd /Herwig/EventHandlers',
32  'set EventHandler:LuminosityFunction:Energy 13000*GeV',
33  'cd /',
34  'set /Herwig/Particles/h0:NominalMass 125.0'
35  ),
36  parameterSets = cms.vstring(
37  'hw_lhe_common_settings',
38  'hw_lhe_Powheg_settings',
39  'herwig7CH3PDF',
40  'herwig7CH3AlphaS',
41  'herwig7CH3MPISettings',
42  'herwig7StableParticlesForDetector',
43  'hw_PSWeights_settings',
44  'hw_user_settings'
45  ),
46  repository = cms.string('${HERWIGPATH}/HerwigDefaults.rpo'),
47  run = cms.string('InterfaceMatchboxTest'),
48  runModeList = cms.untracked.string('read,run'),
49 )