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.
1 import FWCore.ParameterSet.Config as cms
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  if hasattr(process,'options'):
14  process.options.wantSummary = cms.untracked.bool(True)
15  else:
16  process.options = cms.untracked.PSet(
17  wantSummary = cms.untracked.bool(True)
18  )
19 
20  return(process)
return((rh^lh)&mask)