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

Merge branch 'py3.MuonCalibStandAloneTools-20200326' into 'master'

MuonCalibStandAloneTools: Python 3 fixes

See merge request !31549
parents 68b3d6c2 7fed916c
No related branches found
No related tags found
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!31549MuonCalibStandAloneTools: Python 3 fixes
# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
from __future__ import print_function
from MuonCalibStandAloneTools.MuonCalibStandAloneToolsConf import *
......@@ -71,5 +73,5 @@ def CreateCalibTool(CalibrationTool):
elif CalibrationTool == "ResidualVsTimeTool":
return MuonCalib__NtupleResidualVsTimeTool()
else:
print "WARNING: Unnknown tool name '" + CalibrationTool + "'!"
print ("WARNING: Unnknown tool name '" + CalibrationTool + "'!")
return None
......@@ -15,7 +15,7 @@ RegionSelectionSvc.Region = "[B??]"
# RegionSelectionSvc.Region = "[BIR,6,1]"
RegionSelectionSvc.PrintList = True
ServiceMgr += RegionSelectionSvc
print RegionSelectionSvc
printfunc (RegionSelectionSvc)
##################################USER SETTINGS#################################
#select calibration algoritm
......@@ -329,10 +329,10 @@ if CalibrationAlgorithm == "Display":
#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++### Setup Athena common flags
print CalibrationTool
print MdtCalibOutputDbSvc
print ServiceMgr
print MdtCalibInputSvc
print AlgSequence()
printfunc (CalibrationTool)
printfunc (MdtCalibOutputDbSvc)
printfunc (ServiceMgr)
printfunc (MdtCalibInputSvc)
printfunc (AlgSequence())
from ROOT import gROOT, TCanvas, TF1
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