CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TimeMemoryInfo.py
Go to the documentation of this file.
2 def customise(process):
3 
4  #Adding SimpleMemoryCheck service:
5  process.SimpleMemoryCheck=cms.Service("SimpleMemoryCheck",
6  ignoreTotal=cms.untracked.int32(1),
7  oncePerEventMode=cms.untracked.bool(True))
8  #Adding Timing service:
9  process.Timing=cms.Service("Timing")
10 
11  #Add these 3 lines to put back the summary for timing information at the end of the logfile
12  #(needed for TimeReport report)
13  process.options = cms.untracked.PSet(
14  wantSummary = cms.untracked.bool(True)
15  )
16 
17  return(process)