diff --git a/Trigger/TrigMonitoring/TrigBphysMonitoring/python/TrigBphysMonitorAlgorithm.py b/Trigger/TrigMonitoring/TrigBphysMonitoring/python/TrigBphysMonitorAlgorithm.py index b0b5b30958f1e27f3ed3f281eeae35037998cb1a..35a1986c59a1716a79148edcfff67797f1de9f3c 100644 --- a/Trigger/TrigMonitoring/TrigBphysMonitoring/python/TrigBphysMonitorAlgorithm.py +++ b/Trigger/TrigMonitoring/TrigBphysMonitoring/python/TrigBphysMonitorAlgorithm.py @@ -1,5 +1,5 @@ # -# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +# Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration # '''@file TrigBphysMonitorAlgorithm.py @@ -64,16 +64,7 @@ def TrigBphysMonConfig(inputFlags): # Add some tools. N.B. Do not use your own trigger decision tool. Use the # standard one that is included with AthMonitorAlgorithm. - # # First, add a tool that's set up by a different configuration function. - # # In this case, CaloNoiseToolCfg returns its own component accumulator, - # # which must be merged with the one from this function. - # from CaloTools.CaloNoiseToolConfig import CaloNoiseToolCfg - # caloNoiseAcc, caloNoiseTool = CaloNoiseToolCfg(inputFlags) - # result.merge(caloNoiseAcc) - # trigBphysMonAlg.CaloNoiseTool = caloNoiseTool - - - # # Then, add a tool that doesn't have its own configuration function. In + # # Add a tool that doesn't have its own configuration function. In # # this example, no accumulator is returned, so no merge is necessary. # from MyDomainPackage.MyDomainPackageConf import MyDomainTool # trigBphysMonAlg.MyDomainTool = MyDomainTool()