Skip to content

Commit

Permalink
Extra file
Browse files Browse the repository at this point in the history
  • Loading branch information
jfernan2 committed May 23, 2023
1 parent 5010bd9 commit 999fe77
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions DQMServices/Core/python/DQMStore_Online_cfi.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import FWCore.ParameterSet.Config as cms
from DQMServices.Core.nanoDQMIO_perLSoutput_cff import *

DQMStore = cms.Service("DQMStore",
verbose = cms.untracked.int32(0),
# similar to LSBasedMode but for offline. Explicitly sets LumiFLag on all
# MEs/modules that allow it (canSaveByLumi)
saveByLumi = cms.untracked.bool(False),
#Following list has no effect if saveByLumi is False
MEsToSave = cms.untracked.vstring(nanoDQMIO_perLSoutput.MEsToSave),
trackME = cms.untracked.string(""),
#Legacy code should be out. Suggested on:
#https://github.com/cms-sw/cmssw/pull/34231#issuecomment-874789622
assertLegacySafe = cms.untracked.bool(False),
# UNUSED: historical HLT configs expect this option to be present, so it
# remains here, even though the DQMStore does not use it any more.
enableMultiThread = cms.untracked.bool(True),
# Online mode
onlineMode = cms.untracked.bool(True)
)

0 comments on commit 999fe77

Please sign in to comment.