Skip to content
Snippets Groups Projects
Commit d617ea5e authored by scott snyder's avatar scott snyder
Browse files

TrigCostMonitor: Basic python3 fixes.

- print function.
parent 0259e31e
No related branches found
No related tags found
No related merge requests found
# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration # Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
from __future__ import print_function
from TrigCostMonitor.TrigCostMonitorConf import * from TrigCostMonitor.TrigCostMonitorConf import *
from AthenaCommon.Logging import logging from AthenaCommon.Logging import logging
...@@ -387,7 +389,7 @@ def setupCostExtras(config = ''): ...@@ -387,7 +389,7 @@ def setupCostExtras(config = ''):
svcMgr.TrigTimerSvc.OutputLevel = 4 svcMgr.TrigTimerSvc.OutputLevel = 4
log.info('Setup detailed timing:') log.info('Setup detailed timing:')
print svcMgr.TrigTimerSvc print (svcMgr.TrigTimerSvc )
#---------------------------------------------------------------------- #----------------------------------------------------------------------
# Configure TrigSteering algorithm # Configure TrigSteering algorithm
...@@ -514,7 +516,7 @@ def setupCostDebug(option = "cost"): ...@@ -514,7 +516,7 @@ def setupCostDebug(option = "cost"):
from AthenaCommon.AlgSequence import AlgSequence from AthenaCommon.AlgSequence import AlgSequence
topSeq = AlgSequence() topSeq = AlgSequence()
print topSeq print (topSeq)
setSteerDebug('TrigSteer_L2', option, log) setSteerDebug('TrigSteer_L2', option, log)
setSteerDebug('TrigSteer_EF', option, log) setSteerDebug('TrigSteer_EF', option, log)
......
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