CMS 3D CMS Logo

DQMFastTimerService_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # instrument the process with the FastTimerService
4 from HLTrigger.Timer.FastTimerService_cfi import FastTimerService
5 
6 # print a text summary at the end of the job
7 FastTimerService.printEventSummary = False
8 FastTimerService.printRunSummary = False
9 FastTimerService.printJobSummary = True
10 
11 # enable per-event DQM plots
12 FastTimerService.enableDQM = True
13 
14 # disable per-module DQM plots
15 FastTimerService.enableDQMbyModule = False
16 
17 # enable per-event DQM plots by lumisection
18 FastTimerService.enableDQMbyLumiSection = True
19 FastTimerService.dqmLumiSectionsRange = 2500 # lumisections (23.31 s)
20 
21 # set the time resolution of the DQM plots
22 FastTimerService.dqmTimeRange = 10000. # ms
23 FastTimerService.dqmTimeResolution = 10. # ms
24 FastTimerService.dqmPathTimeRange = 10000. # ms
25 FastTimerService.dqmPathTimeResolution = 10. # ms
26 FastTimerService.dqmModuleTimeRange = 100. # ms
27 FastTimerService.dqmModuleTimeResolution = 0.5 # ms
28 
29 # set the base DQM folder for the plots
30 FastTimerService.dqmPath = "DQM/TimerService"
31 FastTimerService.enableDQMbyProcesses = False