diff --git a/DataQuality/DataQualityTools/python/DQTBackgroundMon.py b/DataQuality/DataQualityTools/python/DQTBackgroundMon.py index acc38a1738e8a21b032070926b3d3448c5cc68de..f8586d623b5822672d495efc23ef7fba0b4208ae 100644 --- a/DataQuality/DataQualityTools/python/DQTBackgroundMon.py +++ b/DataQuality/DataQualityTools/python/DQTBackgroundMon.py @@ -174,11 +174,15 @@ def DQTBackgroundMonAlgConfig(flags, isOld=False): group.defineHistogram('nVertex;nVertex_unpairNonIso', title=pVertexT+unpairNonIsoT, weight='unpairNonIso', xbins=50, xmin=0, xmax=50) - acc = helper.result() - # need background objects if not isOld: + # need background objects + from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator + acc = ComponentAccumulator() from RecBackgroundAlgs.BackgroundAlgsConfig import BackgroundAlgsCfg acc.merge(BackgroundAlgsCfg(flags)) + acc.merge(helper.result()) + else: + acc = helper.result() return acc diff --git a/Trigger/TrigT1/TrigT1CaloMonitoring/python/LVL1CaloMonitoringConfig.py b/Trigger/TrigT1/TrigT1CaloMonitoring/python/LVL1CaloMonitoringConfig.py index 61355c05bed6a222fd248297bc6ed2ba057753e0..4fc9e63fadc140c714c0d705ce00d9c9a9539774 100644 --- a/Trigger/TrigT1/TrigT1CaloMonitoring/python/LVL1CaloMonitoringConfig.py +++ b/Trigger/TrigT1/TrigT1CaloMonitoring/python/LVL1CaloMonitoringConfig.py @@ -48,9 +48,9 @@ def LVL1CaloMonitoringConfig(flags): result.merge(CpmMonitoringConfig(flags)) result.merge(CpmSimMonitoringConfig(flags)) result.merge(JepCmxMonitoringConfig(flags)) - result.merge(OverviewMonitoringConfig(flags)) result.merge(PPMSimBSMonitoringConfig(flags)) result.merge(JetEfficiencyMonitoringConfig(flags)) + result.merge(OverviewMonitoringConfig(flags)) if flags.Input.TriggerStream == "physics_Mistimed": from TrigT1CaloMonitoring.MistimedStreamMonitorAlgorithm import MistimedStreamMonitorConfig