00001 import FWCore.ParameterSet.Config as cms 00002 00003 # Make sure to enable the "TimerService" service at your top-level cfg! 00004 # by including something like the following: 00005 # service = TimerService { 00006 # untracked bool useCPUtime = true // set to false for wall-clock-time 00007 # } 00008 # This is the module that stores in the Event the timing info 00009 myTimer = cms.EDProducer("Timer", 00010 # whether to include timing info about Timer itself 00011 includeSelf = cms.untracked.bool(False) 00012 ) 00013 00014