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