CMS 3D CMS Logo

FastTimerService_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 FastTimerService = cms.Service("FastTimerService",
4  dqmLumiSectionsRange = cms.untracked.uint32(2500),
5  dqmMemoryRange = cms.untracked.double(1000000),
6  dqmMemoryResolution = cms.untracked.double(5000),
7  dqmModuleMemoryRange = cms.untracked.double(100000),
8  dqmModuleMemoryResolution = cms.untracked.double(500),
9  dqmModuleTimeRange = cms.untracked.double(4000.0),
10  dqmModuleTimeResolution = cms.untracked.double(0.2),
11  dqmPath = cms.untracked.string('HLT/TimerService'),
12  dqmPathMemoryRange = cms.untracked.double(1000000),
13  dqmPathMemoryResolution = cms.untracked.double(5000),
14  dqmPathTimeRange = cms.untracked.double(15000.0),
15  dqmPathTimeResolution = cms.untracked.double(0.5),
16  dqmTimeRange = cms.untracked.double(15000.0),
17  dqmTimeResolution = cms.untracked.double(1.0),
18  enableDQM = cms.untracked.bool(False),
19  enableDQMTransitions = cms.untracked.bool(False),
20  enableDQMbyLumiSection = cms.untracked.bool(False),
21  enableDQMbyModule = cms.untracked.bool(False),
22  enableDQMbyPath = cms.untracked.bool(False),
23  enableDQMbyProcesses = cms.untracked.bool(False),
24  highlightModules = cms.untracked.VPSet(),
25  jsonFileName = cms.untracked.string('Phase2Timing_resources.json'),
26  printEventSummary = cms.untracked.bool(False),
27  printJobSummary = cms.untracked.bool(True),
28  printRunSummary = cms.untracked.bool(False),
29  writeJSONSummary = cms.untracked.bool(True)
30 )