Skip to content
Snippets Groups Projects
Commit 16369fe0 authored by Frank Winklmeier's avatar Frank Winklmeier Committed by Walter Lampl
Browse files

TrigFastTrackFinder: Monitoring config fix for GaudiConfig2

Make `TrigFastTrackFinderMonitoring` compatible with GaudiConfig2 where
`self.name` is not directly writable anymore.
parent f2b2ca0e
1 merge request!30675WIP: Migrate ComponentAccumulator to GaudiConfig2
...@@ -8,9 +8,9 @@ from AthenaMonitoringKernel.GenericMonitoringTool import GenericMonitoringTool ...@@ -8,9 +8,9 @@ from AthenaMonitoringKernel.GenericMonitoringTool import GenericMonitoringTool
class TrigFastTrackFinderMonitoring(GenericMonitoringTool): class TrigFastTrackFinderMonitoring(GenericMonitoringTool):
def __init__ (self, name, doResMon=False): def __init__ (self, name, doResMon=False):
self.name = "TrigFastTrackFinder_" + name name = "TrigFastTrackFinder_" + name
super(TrigFastTrackFinderMonitoring, self).__init__( self.name ) super(TrigFastTrackFinderMonitoring, self).__init__(name)
self.HistPath = self.name self.HistPath = name
self.addSPHistograms(name) self.addSPHistograms(name)
self.addDataErrorHistograms() self.addDataErrorHistograms()
self.addTimingHistograms(name) self.addTimingHistograms(name)
......
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