Skip to content

Commit

Permalink
Merge pull request #28208 from andrius-k/dqm-fix-SelectEvents-EVD-2in…
Browse files Browse the repository at this point in the history
…stance

A fix for missing SelectEvents configuration option
  • Loading branch information
cmsbuild committed Oct 21, 2019
2 parents c946fb2 + 80c333b commit ac773de
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -81,7 +81,6 @@
del process._Process__outputmodules["FEVToutput"]

process.FEVToutput = cms.OutputModule("JsonWritingTimeoutPoolOutputModule",
# SelectEvents = oldo.SelectEvents,
splitLevel = oldo.splitLevel,
outputCommands = oldo.outputCommands,
fileName = oldo.fileName,
Expand All @@ -92,6 +91,9 @@
outputPath = cms.untracked.string(outDir),
)

if hasattr(oldo, 'SelectEvents'):
process.FEVToutput.SelectEvents = oldo.SelectEvents

process.DQMMonitoringService = cms.Service("DQMMonitoringService")

dump = False
Expand Down

0 comments on commit ac773de

Please sign in to comment.