Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:10

0001 import FWCore.ParameterSet.Config as cms
0002 from DQMServices.Core.nanoDQMIO_perLSoutput_cff import *
0003 
0004 DQMStore = cms.Service("DQMStore",
0005     verbose = cms.untracked.int32(0),
0006     # similar to LSBasedMode but for offline. Explicitly sets LumiFLag on all
0007     # MEs/modules that allow it (canSaveByLumi)
0008     saveByLumi = cms.untracked.bool(False),
0009     #Following list has no effect if saveByLumi is False
0010     MEsToSave = cms.untracked.vstring(nanoDQMIO_perLSoutput.MEsToSave),  
0011     trackME = cms.untracked.string(""),
0012     #Legacy code should be out. Suggested on:
0013     #https://github.com/cms-sw/cmssw/pull/34231#issuecomment-874789622
0014     assertLegacySafe  = cms.untracked.bool(False),
0015     # UNUSED: historical HLT configs expect this option to be present, so it
0016     # remains here, even though the DQMStore does not use it any more.
0017     enableMultiThread = cms.untracked.bool(True),
0018     # Online mode
0019     onlineMode = cms.untracked.bool(True)
0020 )