CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
OnlineDQM_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # load the DQM service
5 
6 # The following is not used any more; there are no clients for this output
7 # so it wastes a lot of memory, possibly also cpu power
8 # Needs also hasSharedMemory to be false for the FUEventProcessor xdaq config
9 ## DQM output via the shared memory
10 #FUShmDQMOutputService = cms.Service("FUShmDQMOutputService",
11 # initialMessageBufferSize = cms.untracked.int32(1000000),
12 # compressionLevel = cms.int32(1),
13 # lumiSectionInterval = cms.untracked.int32(2000000),
14 # lumiSectionsPerUpdate = cms.double(1.0),
15 # useCompression = cms.bool(True)
16 #)
17 
18 # needed in the online because the otherwise default initiated one gets ill-configured (missing parameter lvl1Labels)
19 # it doesn't really belong here, but ok, it doesn't hurt either
21 PrescaleService.prescaleTable = cms.VPSet()
DQM output via the shared memory FUShmDQMOutputService = cms.Service("FUShmDQMOutputService", initialMessageBufferSize = cms.untracked.int32(1000000), compressionLevel = cms.int32(1), lumiSectionInterval = cms.untracked.int32(2000000), lumiSectionsPerUpdate = cms.double(1.0), useCompression = cms.bool(True) )