CMS 3D CMS Logo

DQMStore_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 DQMStore = cms.Service("DQMStore",
4  verbose = cms.untracked.int32(0),
5  # similar to LSBasedMode but for offline. Explicitly sets LumiFLag on all
6  # MEs/modules that allow it (canSaveByLumi)
7  saveByLumi = cms.untracked.bool(False),
8  trackME = cms.untracked.string(""),
9 
10  # UNUSED: historical HLT configs expect this option to be present, so it
11  # remains here, even though the DQMStore does not use it any more.
12  enableMultiThread = cms.untracked.bool(True)
13 )