-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41752 from jfernan2/fixDQMOnlineMode130X
[13_0_X] DQM: Online mode for DQMStore
- Loading branch information
Showing
5 changed files
with
32 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters