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.__dict__['_Process__name']=process.__dict__['_Process__name']+'-PILEUP'
00014
00015 process.SimpleMemoryCheck=cms.Service("SimpleMemoryCheck",
00016 ignoreTotal=cms.untracked.int32(1),
00017 oncePerEventMode=cms.untracked.bool(True))
00018
00019 process.Timing=cms.Service("Timing")
00020
00021
00022
00023 process.options = cms.untracked.PSet(
00024 wantSummary = cms.untracked.bool(True)
00025 )
00026
00027
00028
00029 process.mix.input.fileNames = cms.untracked.vstring('file:../INPUT_PILEUP_EVENTS.root')
00030
00031
00032
00033 process.IgProfService = cms.Service("IgProfService",
00034 reportFirstEvent = cms.untracked.int32(1),
00035 reportEventInterval = cms.untracked.int32(50),
00036 reportToFileAtPostEvent = cms.untracked.string("| gzip -c > IgProf.%I.gz")
00037 )
00038
00039
00040 return(process)