File indexing completed on 2024-04-06 12:32:56
0001 import FWCore.ParameterSet.Config as cms
0002 def customise(process):
0003
0004
0005 process.SimpleMemoryCheck=cms.Service("SimpleMemoryCheck",
0006 ignoreTotal=cms.untracked.int32(1),
0007 oncePerEventMode=cms.untracked.bool(True))
0008
0009 process.Timing=cms.Service("Timing")
0010
0011
0012
0013
0014 process.MessageLogger.files = dict(G4msg = cms.untracked.PSet(
0015 noTimeStamps = cms.untracked.bool(True)
0016
0017 ,threshold = cms.untracked.string('INFO')
0018 ,INFO = cms.untracked.PSet(limit = cms.untracked.int32(0))
0019 ,FwkReport = cms.untracked.PSet(limit = cms.untracked.int32(0))
0020 ,FwkSummary = cms.untracked.PSet(limit = cms.untracked.int32(0))
0021 ,Root_NoDictionary = cms.untracked.PSet(limit = cms.untracked.int32(0))
0022 ,FwkJob = cms.untracked.PSet(limit = cms.untracked.int32(0))
0023 ,TimeReport = cms.untracked.PSet(limit = cms.untracked.int32(0))
0024 ,TimeModule = cms.untracked.PSet(limit = cms.untracked.int32(0))
0025 ,TimeEvent = cms.untracked.PSet(limit = cms.untracked.int32(0))
0026 ,MemoryCheck = cms.untracked.PSet(limit = cms.untracked.int32(0))
0027
0028
0029
0030
0031
0032 ,PhysicsList = cms.untracked.PSet(limit = cms.untracked.int32(-1))
0033 ,G4cout = cms.untracked.PSet(limit = cms.untracked.int32(-1))
0034 ,G4cerr = cms.untracked.PSet(limit = cms.untracked.int32(-1))
0035 )
0036 )
0037
0038
0039 if hasattr(process,'options'):
0040 process.options.wantSummary = cms.untracked.bool(True)
0041 else:
0042 process.options = cms.untracked.PSet(
0043 wantSummary = cms.untracked.bool(True)
0044 )
0045
0046 return(process)