Skip to content

Commit

Permalink
A fix for missing SelectEvents configuration option
Browse files Browse the repository at this point in the history
  • Loading branch information
andrius committed Oct 18, 2019
1 parent 5d038bc commit 80c333b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
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 80c333b

Please sign in to comment.