CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
timer_cfi.py
Go to the documentation of this file.
2 
3 # Make sure to enable the "TimerService" service at your top-level cfg!
4 # by including something like the following:
5 # service = TimerService {
6 # untracked bool useCPUtime = true // set to false for wall-clock-time
7 # }
8 # This is the module that stores in the Event the timing info
9 myTimer = cms.EDProducer("Timer",
10  # whether to include timing info about Timer itself
11  includeSelf = cms.untracked.bool(False)
12 )
13 
14