Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # instrument the process with the FastTimerService
0004 from HLTrigger.Timer.FastTimerService_cfi import FastTimerService
0005 
0006 # print a text summary at the end of the job
0007 FastTimerService.printEventSummary          = False
0008 FastTimerService.printRunSummary            = False
0009 FastTimerService.printJobSummary            = True
0010 
0011 # enable per-event DQM plots
0012 FastTimerService.enableDQM                  = True
0013 
0014 # disable per-module DQM plots
0015 FastTimerService.enableDQMbyModule          = False
0016 
0017 # enable per-event DQM plots by lumisection
0018 FastTimerService.enableDQMbyLumiSection     = True
0019 FastTimerService.dqmLumiSectionsRange       = 2500    # lumisections (23.31 s)
0020 
0021 # set the time resolution of the DQM plots
0022 FastTimerService.dqmTimeRange               = 10000.  # ms
0023 FastTimerService.dqmTimeResolution          =    10.  # ms
0024 FastTimerService.dqmPathTimeRange           = 10000.  # ms
0025 FastTimerService.dqmPathTimeResolution      =    10.  # ms
0026 FastTimerService.dqmModuleTimeRange         =   100.  # ms
0027 FastTimerService.dqmModuleTimeResolution    =     0.5 # ms
0028 
0029 # set the base DQM folder for the plots
0030 FastTimerService.dqmPath                    = "DQM/TimerService"
0031 FastTimerService.enableDQMbyProcesses       = False