Skip to content
Snippets Groups Projects
Commit d417f2d3 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'py3.TrigT1CTMonitoring-20200124' into 'master'

TrigT1CTMonitoring+TrigT1CaloMonitoring+TrigT1Monitoring+tauMonitoring: python 3 fixes

See merge request atlas/athena!29776
parents 1262822b c434309c
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ from AthenaMonitoring.AtlasReadyFilterTool import GetAtlasReadyFilterTool
LowStat = True
if DQMonFlags.monManEnvironment() == 'online' :
LowStat = False
print "doLowStat " , LowStat
printfunc ("doLowStat " , LowStat)
myTDT = None
if DQMonFlags.useTrigger() and LowStat :
......@@ -35,7 +35,7 @@ else :
tauMonTool.doTrigger = DQMonFlags.useTrigger()
tauMonTool.TrigDecisionTool = myTDT
print "doTrigger " , tauMonTool.doTrigger
printfunc ("doTrigger " , tauMonTool.doTrigger)
if tauMonTool.doTrigger :
tauMonTool.TauEleJetMbtsTriggerItems = [ [ "L1_TAU1.*" , "L1_TAU2.*" , "L1_TAU60" , "L1_EM15VHI_2TAU.*" , "L1_EM15VHI_TAU40.*" , "L1_MU10_TAU.*" , "L1_J25_3J12_EM15-TAU.*" ] , [ "HLT_e2.*" , "L1_EM2.*" , "L1_2EM15" ] , [ "HLT_j55" , "HLT_j60" , "HLT_j85" , "HLT_j110" , "HLT_j175" , "HLT_4j85" , "HLT_4j10.*" ] , [ "HLT_mb_sp2000_trk70_hmt" ] ]
......
......@@ -167,8 +167,8 @@ if isOnline:
svcMgr.ToolSvc += BSMon( FillStateCoolFolderName=UsedFillStateCoolFolderName)
# RecMuCTPIByteStreamTool.OutputLevel = INFO #DEBUG
print topSequence
print svcMgr
printfunc (topSequence)
printfunc (svcMgr)
......@@ -200,9 +200,10 @@ if not isOnline:
histbase += "run_RUNNR/"
try:
topSequence.CTPSimulation.HistBase = histbase
except AttributeError, ex:
print ex," ignore for now"
except AttributeError as ex:
printfunc (ex," ignore for now")
import traceback
traceback.print_exc()
## AthenaMonManager is the Algorithm that manages many classes inheriting
## from ManagedMonitorToolBase
......
......@@ -5,7 +5,7 @@
# @authors Johanna Fleckner, Andrea Neusiedl, Peter Faulkner
if not 'DQMonFlags' in dir():
print "TrigT1CaloMonitoring_forRecExCommission.py: DQMonFlags not yet imported - I import them now"
printfunc ("TrigT1CaloMonitoring_forRecExCommission.py: DQMonFlags not yet imported - I import them now")
from AthenaMonitoring.DQMonFlags import DQMonFlags
# On Tier0 select monitoring tools according to processing step
......
......@@ -6,7 +6,7 @@
#
from AthenaCommon.GlobalFlags import globalflags
if not 'DQMonFlags' in dir():
print "TrigT1CaloMonitoring_forRecExCommission.py: DQMonFlags not yet imported - I import them now"
printfunc ("TrigT1CaloMonitoring_forRecExCommission.py: DQMonFlags not yet imported - I import them now")
from AthenaMonitoring.DQMonFlags import DQMonFlags
# On Tier0 select monitoring tools according to processing step
......@@ -142,4 +142,4 @@ if l1caloRawMon:
L1Man.ManualDataTypeSetup = DQMonFlags.monManManualDataTypeSetup()
L1Man.DataType = DQMonFlags.monManDataType()
print svcMgr.MessageSvc
printfunc (svcMgr.MessageSvc)
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