diff --git a/Trigger/TriggerRelease/python/Modifiers.py b/Trigger/TriggerRelease/python/Modifiers.py index a95669097776d58d18772a19ca078f6efb4a6c97..78e6dca62c2211a6f966c51c71da4b7dadf305e1 100644 --- a/Trigger/TriggerRelease/python/Modifiers.py +++ b/Trigger/TriggerRelease/python/Modifiers.py @@ -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