Skip to content
Snippets Groups Projects
Commit d5c6ddfd authored by Stewart Martin-Haugh's avatar Stewart Martin-Haugh
Browse files

Add new AthMemoryAuditor option

Former-commit-id: 5bb3c850c6d74b8a3201eac6401120ff096f0482
parent 10c5e623
No related branches found
No related tags found
No related merge requests found
......@@ -1323,7 +1323,19 @@ class fpeAuditor(_modifier):
theApp.AuditServices = True
theApp.AuditTools = True
svcMgr.AuditorSvc += CfgMgr.FPEAuditor()
class athMemAuditor(_modifier):
"""
Turn on AthMemoryAuditor
"""
def postSetup(self):
from AthenaCommon import CfgMgr
theApp.AuditAlgorithms = True
theApp.AuditServices = True
theApp.AuditTools = True
svcMgr.AuditorSvc += CfgMgr.AthMemoryAuditor(MaxStacktracesPerAlg=20,
DefaultStacktraceDepth=50,
StacktraceDepthPerAlg=["Stream1 100"])
class detailedTiming(_modifier):
"""
Add detailed timing information
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment