From 999fe77674ff43001dab2af062424e275dde85e7 Mon Sep 17 00:00:00 2001 From: Javier Date: Tue, 23 May 2023 11:54:41 +0200 Subject: [PATCH] Extra file --- .../Core/python/DQMStore_Online_cfi.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 DQMServices/Core/python/DQMStore_Online_cfi.py diff --git a/DQMServices/Core/python/DQMStore_Online_cfi.py b/DQMServices/Core/python/DQMStore_Online_cfi.py new file mode 100644 index 0000000000000..559629ff66877 --- /dev/null +++ b/DQMServices/Core/python/DQMStore_Online_cfi.py @@ -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) +)