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(False))
00016
00017 process.Timing=cms.Service("Timing",
00018 summaryOnly=cms.untracked.bool(True))
00019
00020
00021
00022 process.options = cms.untracked.PSet(
00023 wantSummary = cms.untracked.bool(True)
00024 )
00025
00026
00027 process.IgProfService = cms.Service("IgProfService",
00028 reportFirstEvent = cms.untracked.int32(1),
00029 reportEventInterval = cms.untracked.int32( ((process.maxEvents.input.value()-1)/2) ),
00030 reportToFileAtPostEvent = cms.untracked.string("| gzip -c > IgProf.%I.gz")
00031 )
00032
00033 process.genParticles.abortOnUnknownPDGCode = cms.untracked.bool(False)
00034
00035 return(process)