Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 import FWCore.ParameterSet.Config as cms
00011 def customise(process):
00012
00013 process.SimpleMemoryCheck=cms.Service("SimpleMemoryCheck",
00014 ignoreTotal=cms.untracked.int32(1),
00015 oncePerEventMode=cms.untracked.bool(True))
00016
00017 process.Timing=cms.Service("Timing")
00018
00019
00020
00021 process.options = cms.untracked.PSet(
00022 wantSummary = cms.untracked.bool(True)
00023 )
00024
00025
00026 process.IgProfService = cms.Service("IgProfService",
00027 reportFirstEvent = cms.untracked.int32(1),
00028 reportEventInterval = cms.untracked.int32( ((process.maxEvents.input.value()-1)/2) ),
00029 reportToFileAtPostEvent = cms.untracked.string("| gzip -c > IgProf.%I.gz")
00030 )
00031
00032 return(process)