diff --git a/Reconstruction/MissingETPerformance/python/METGetterAOD_Neutrinofication.py b/Reconstruction/MissingETPerformance/python/METGetterAOD_Neutrinofication.py
index 947c4bdbfb161fe55568ee7240a58777dc0d193b..422d2071df1b41503dcb492b1482cebb09c331c3 100644
--- a/Reconstruction/MissingETPerformance/python/METGetterAOD_Neutrinofication.py
+++ b/Reconstruction/MissingETPerformance/python/METGetterAOD_Neutrinofication.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
+# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 
 ##############################################################################################
 #
@@ -35,7 +35,7 @@ class METGetterAOD ( Configured ):
             theMETAlg=METAlg("METAlg")
         except: 					       
             mlog.error("could not import MissingET.METAlg")    
-            print traceback.format_exc()		       
+            mlog.error (traceback.format_exc()		       )
             return False	
  			      	
 	#------------------------------------------------------------------------------------------------
@@ -59,7 +59,7 @@ class METGetterAOD ( Configured ):
 	    							         
         except: 						  		   
             mlog.error("could not get handle to METRefFinal Quit")  	   
-            print traceback.format_exc()			  		   
+            mlog.error (traceback.format_exc()			  		   )
             return False					  		   
         
 	# add METFinalTool to list of tools 
diff --git a/Reconstruction/MissingETPerformance/python/METRefGetter.py b/Reconstruction/MissingETPerformance/python/METRefGetter.py
index 1e67cc61125d7a1671799d892acfe08ff838eb81..39d1dfdaaf43f7fb053d1d4af1dea9f2d958b7e3 100644
--- a/Reconstruction/MissingETPerformance/python/METRefGetter.py
+++ b/Reconstruction/MissingETPerformance/python/METRefGetter.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
+# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 
 ##############################################################################################
 #
@@ -15,6 +15,8 @@
 #
 ##############################################################################################
 
+from __future__ import print_function
+
 from AthenaCommon.SystemOfUnits import *  # loads MeV etc...
 from AthenaCommon.Constants import *      # Loads DEBUG INFO etc..
 from AthenaCommon.Logging import logging  # loads logger 
@@ -72,12 +74,12 @@ def getStandardCalibTool(doAtlfastII=False):
     conddb.addFolder("CALO",folder+' <tag>'+tag+'</tag>')						            
 
     # checking....											            
-    # print ' tname is ',tname										            
-    # print ' input is ', input										            
-    # print ' tag is ', tag										            
-    # print ' name is', cellcalibtool.name()								            
-    # print ' key is ', key										            
-    # print ' folder is ', folder 									            
+    # print (' tname is ',tname )
+    # print (' input is ', input )
+    # print (' tag is ', tag )
+    # print (' name is', cellcalibtool.name() )
+    # print (' key is ', key )
+    # print (' folder is ', folder )
 													            
     return cellcalibtool										            
 													            
@@ -100,7 +102,7 @@ class METRefGetter ( Configured ):
                 theMETRefAlg.UseCells = True
         except: 					       
             mlog.error("could not import MissingET.METRefAlg")    
-            print traceback.format_exc()		       
+            mlog.error(traceback.format_exc())
             return False	
 	#------------------------------------------------------------------------------------------------
         # configure the tools: METRefinedEleTool => calibrator Tool for ATLFASTII
@@ -130,7 +132,7 @@ class METRefGetter ( Configured ):
 	   	
             theMETRefinedEleTool.BackNavigationTo	 = "Cell"    # to "Cell"
             theMETRefinedEleTool.MissingETOutKey     	 = "MET_RefEle"
-            print "******************* key = "+theMETRefinedEleTool.MissingETOutKey
+            print ("******************* key = "+theMETRefinedEleTool.MissingETOutKey)
             #-----------------
             from MissingET.MissingETConf import METClusterResolverTool
             theMETEleResolver = METClusterResolverTool("EleResolve")
@@ -164,7 +166,7 @@ class METRefGetter ( Configured ):
 	    	    									     
         except: 							     
             mlog.error("could not get handle to METRefinedEleTool Quit")      
-            print traceback.format_exc()				     
+            mlog.error(traceback.format_exc())
             return False						     
  	
 	# add cellcalibtool				  		   
@@ -209,7 +211,7 @@ class METRefGetter ( Configured ):
 	    								     
             except:								       
             	mlog.error("could not get handle to METRefinedTauTool Quit")	       
-            	print traceback.format_exc()					       
+            	mlog.error(traceback.format_exc())
             	return False							       
 	
 	    # add cellcalibtool 					    
@@ -252,7 +254,7 @@ class METRefGetter ( Configured ):
 	    							         
         except: 						  		   
             mlog.error("could not get handle to METRefinedJetTool Quit")  	   
-            print traceback.format_exc()			  		   
+            mlog.error(traceback.format_exc())
             return False	
 	    
         # add cellcalibtool				  		   
@@ -302,7 +304,7 @@ class METRefGetter ( Configured ):
         
         except: 						  		   
             mlog.error("could not get handle to METRefinedClusterTool Quit")  	   
-            print traceback.format_exc()			  		   
+            mlog.error(traceback.format_exc())
             return False	
 	    
         # add cellcalibtool				  		   
diff --git a/Reconstruction/MissingETPerformance/python/METRefGetter_Neutrinofication.py b/Reconstruction/MissingETPerformance/python/METRefGetter_Neutrinofication.py
index 229932444f10c7bc39532bc131afca8b067040e1..f23ae07830a305332ffb175d2566d813bfe3f304 100644
--- a/Reconstruction/MissingETPerformance/python/METRefGetter_Neutrinofication.py
+++ b/Reconstruction/MissingETPerformance/python/METRefGetter_Neutrinofication.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
+# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 
 ##############################################################################################
 #
@@ -16,6 +16,8 @@
 #
 ##############################################################################################
 
+from __future__ import print_function
+
 from AthenaCommon.SystemOfUnits import *  # loads MeV etc...
 from AthenaCommon.Constants import *      # Loads DEBUG INFO etc..
 from AthenaCommon.Logging import logging  # loads logger 
@@ -73,12 +75,12 @@ def getStandardCalibTool(doAtlfastII=False):
     conddb.addFolder("CALO",folder+' <tag>'+tag+'</tag>')						            
 
     # checking....											            
-    # print ' tname is ',tname										            
-    # print ' input is ', input										            
-    # print ' tag is ', tag										            
-    # print ' name is', cellcalibtool.name()								            
-    # print ' key is ', key										            
-    # print ' folder is ', folder 									            
+    # print (' tname is ',tname )
+    # print (' input is ', input )
+    # print (' tag is ', tag )
+    # print (' name is', cellcalibtool.name() )
+    # print (' key is ', key )
+    # print (' folder is ', folder )
 													            
     return cellcalibtool										            
 													            
@@ -103,7 +105,7 @@ class METRefGetter ( Configured ):
                 theMETRefAlg.UseCells = True
         except: 					       
             mlog.error("could not import MissingET.METRefAlg")    
-            print traceback.format_exc()		       
+            mlog.error(traceback.format_exc())
             return False	
 	#------------------------------------------------------------------------------------------------
         # configure the tools: METRefinedEleTool => calibrator Tool for ATLFASTII
@@ -132,7 +134,7 @@ class METRefGetter ( Configured ):
 	   	
             theMETRefinedEleTool.BackNavigationTo	 = "Cell"    # to "Cell"
             theMETRefinedEleTool.MissingETOutKey     	 = "MET_RefEle"
-            print "******************* key = "+theMETRefinedEleTool.MissingETOutKey
+            print ("******************* key = "+theMETRefinedEleTool.MissingETOutKey)
             #-----------------
             from MissingET.MissingETConf import METClusterResolverTool
             theMETEleResolver = METClusterResolverTool("EleResolve")
@@ -166,7 +168,7 @@ class METRefGetter ( Configured ):
 	    	    									     
         except: 							     
             mlog.error("could not get handle to METRefinedEleTool Quit")      
-            print traceback.format_exc()				     
+            mlog.error(traceback.format_exc())
             return False						     
  	
 	# add cellcalibtool				  		   
@@ -213,7 +215,7 @@ class METRefGetter ( Configured ):
 	   	
             theMETRefinedEleNueTool.BackNavigationTo	 = "Cell"    # to "Cell"
             theMETRefinedEleNueTool.MissingETOutKey     	 = "MET_RefEleNue"
-            print "******************* key = "+theMETRefinedEleNueTool.MissingETOutKey
+            print ("******************* key = "+theMETRefinedEleNueTool.MissingETOutKey)
             #-----------------
             from MissingET.MissingETConf import METClusterResolverTool
             theMETEleResolver = METClusterResolverTool("EleResolve")
@@ -223,7 +225,7 @@ class METRefGetter ( Configured ):
 	    #------------------------------------------------------------------------------------						     
         except: 							     
             mlog.error("NEUTRINOFICATION: could not get handle to METRefinedEleTool Quit")      
-            print traceback.format_exc()				     
+            mlog.error(traceback.format_exc())
             return False						     
  	
 	# add cellcalibtool				  		   
@@ -264,7 +266,7 @@ class METRefGetter ( Configured ):
 	    								     
             except:								       
             	mlog.error("could not get handle to METRefinedTauTool Quit")	       
-            	print traceback.format_exc()					       
+            	mlog.error(traceback.format_exc())
             	return False							       
 	
 	    # add cellcalibtool 					    
@@ -307,7 +309,7 @@ class METRefGetter ( Configured ):
 	    							         
         except: 						  		   
             mlog.error("could not get handle to METRefinedJetTool Quit")  	   
-            print traceback.format_exc()			  		   
+            mlog.error(traceback.format_exc())
             return False	
 	    
         # add cellcalibtool				  		   
@@ -357,7 +359,7 @@ class METRefGetter ( Configured ):
         
         except: 						  		   
             mlog.error("could not get handle to METRefinedClusterTool Quit")  	   
-            print traceback.format_exc()			  		   
+            mlog.error(traceback.format_exc())
             return False	
 	    
         # add cellcalibtool				  		   
diff --git a/Reconstruction/MissingETPerformance/share/AODcompareReleases.py b/Reconstruction/MissingETPerformance/share/AODcompareReleases.py
index cf86e499fe6fe75298946ca7e3464208a04ba978..ccdaf397fabd383081d73be703fa699a3d4008fd 100644
--- a/Reconstruction/MissingETPerformance/share/AODcompareReleases.py
+++ b/Reconstruction/MissingETPerformance/share/AODcompareReleases.py
@@ -114,8 +114,8 @@ topSequence.METRefAlg.METRefJet.MissingETOutKey             += newrelease
 #topSequence.METRefAlg.METRefTau.MissingETOutKey            += newrelease
 topSequence.METRefAlg.METRefCluster.MissingETOutKey         += newrelease
 
-print 'printing again topSequence.METRefAlg'
-print topSequence.METRefAlg
+printfunc ('printing again topSequence.METRefAlg')
+printfunc (topSequence.METRefAlg)
 
 #here is where we specify the keys that are going to be written out by adding them to the list
 #needs doWriteAOD=True
@@ -182,4 +182,4 @@ AthenaEventLoopMgr = Service ( "AthenaEventLoopMgr")
 try:
     AthenaEventLoopMgr.EventPrintoutInterval = 1
 except Exception:
-    print 'EventPrintoutInterval exception, defaults to 1'
+    printfunc ('EventPrintoutInterval exception, defaults to 1')
diff --git a/Reconstruction/MissingETPerformance/share/BasicPlots_jobOptions.py b/Reconstruction/MissingETPerformance/share/BasicPlots_jobOptions.py
index a8520ee933a05b84a135b6cbbb334d9450717cc4..56c512a7734df36a569f0f5338cbe5f995dd55e5 100644
--- a/Reconstruction/MissingETPerformance/share/BasicPlots_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/BasicPlots_jobOptions.py
@@ -39,4 +39,4 @@ BasicPlotsTool = ConfiguredBasicPlotsTool(
     )
 
 ToolSvc += BasicPlotsTool
-print      BasicPlotsTool
+printfunc (     BasicPlotsTool)
diff --git a/Reconstruction/MissingETPerformance/share/BasicPlots_jobOptions.py_900mb b/Reconstruction/MissingETPerformance/share/BasicPlots_jobOptions.py_900mb
index d251f87d09749fb8e9a1e9d095a36d7258061989..d9f8230996ce99f43ba6031ecf5a19fbbc2cc781 100755
--- a/Reconstruction/MissingETPerformance/share/BasicPlots_jobOptions.py_900mb
+++ b/Reconstruction/MissingETPerformance/share/BasicPlots_jobOptions.py_900mb
@@ -23,4 +23,4 @@ BasicPlotsTool = ConfiguredBasicPlotsTool(
     )
 
 ToolSvc += BasicPlotsTool
-print      BasicPlotsTool
+printfunc (     BasicPlotsTool)
diff --git a/Reconstruction/MissingETPerformance/share/BasicPlots_jobOptions.py_W b/Reconstruction/MissingETPerformance/share/BasicPlots_jobOptions.py_W
index ca31c7e2aefe1cdcb35c87792a60639e1794eb2a..abed6a2ce99731dcd33b05b9b9df1a96ac12e7b1 100755
--- a/Reconstruction/MissingETPerformance/share/BasicPlots_jobOptions.py_W
+++ b/Reconstruction/MissingETPerformance/share/BasicPlots_jobOptions.py_W
@@ -22,4 +22,4 @@ BasicPlotsTool = ConfiguredBasicPlotsTool(
     )
 
 ToolSvc += BasicPlotsTool
-print      BasicPlotsTool
+printfunc (     BasicPlotsTool)
diff --git a/Reconstruction/MissingETPerformance/share/CellsCleanerTool_jobOptions.py b/Reconstruction/MissingETPerformance/share/CellsCleanerTool_jobOptions.py
index ab1e04bc325511ff2b04acd9f8437dd02f55d985..4e7a9dede60e9f00d80ebf11ab09c6a36fd86efa 100644
--- a/Reconstruction/MissingETPerformance/share/CellsCleanerTool_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/CellsCleanerTool_jobOptions.py
@@ -5,5 +5,5 @@ CellsCleanerTool = ConfiguredCellsCleanerTool(
     )
 
 ToolSvc += CellsCleanerTool
-print      CellsCleanerTool
+printfunc (     CellsCleanerTool)
 
diff --git a/Reconstruction/MissingETPerformance/share/ContainerComparatorTool_jobOptions.py b/Reconstruction/MissingETPerformance/share/ContainerComparatorTool_jobOptions.py
index 1a7b4b203a45a8986f8f6c81177d61529260db73..903f5057383ec8adae9ab793339d5e8819c3e138 100644
--- a/Reconstruction/MissingETPerformance/share/ContainerComparatorTool_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/ContainerComparatorTool_jobOptions.py
@@ -99,7 +99,7 @@ MissingETData_cone7.UseBadChannelMasker         = False
 MissingETData_cone7.UseBadChannelTool           = False
 
 ToolSvc += MissingETData_cone7
-print      MissingETData_cone7
+printfunc (     MissingETData_cone7)
 
 
 #############################################################
@@ -153,7 +153,7 @@ MissingETData_cone7_inversion.UseBadChannelMasker         = False
 MissingETData_cone7_inversion.UseBadChannelTool           = False
 
 ToolSvc += MissingETData_cone7_inversion
-print      MissingETData_cone7_inversion
+printfunc (     MissingETData_cone7_inversion)
 
 #############################################################
 ##### cone4_inversion ######
@@ -206,7 +206,7 @@ MissingETData_cone4_inversion.UseBadChannelMasker         = False
 MissingETData_cone4_inversion.UseBadChannelTool           = False
 
 ToolSvc += MissingETData_cone4_inversion
-print      MissingETData_cone4_inversion
+printfunc (     MissingETData_cone4_inversion)
 
 #############################################################
 ##### antikt ######
@@ -259,7 +259,7 @@ MissingETData_antikt.UseBadChannelMasker         = False
 MissingETData_antikt.UseBadChannelTool           = False
 
 ToolSvc += MissingETData_antikt
-print      MissingETData_antikt
+printfunc (     MissingETData_antikt)
 
 
 #############################################################
@@ -313,7 +313,7 @@ MissingETData_antikt_inversion.UseBadChannelMasker         = False
 MissingETData_antikt_inversion.UseBadChannelTool           = False
 
 ToolSvc += MissingETData_antikt_inversion
-print      MissingETData_antikt_inversion
+printfunc (     MissingETData_antikt_inversion)
 
 #############################################################
 ##### antikt6 ######
@@ -366,7 +366,7 @@ MissingETData_antikt6.UseBadChannelMasker         = False
 MissingETData_antikt6.UseBadChannelTool           = False
 
 ToolSvc += MissingETData_antikt6
-print      MissingETData_antikt6
+printfunc (     MissingETData_antikt6)
 
 
 #############################################################
@@ -420,7 +420,7 @@ MissingETData_antikt6_inversion.UseBadChannelMasker         = False
 MissingETData_antikt6_inversion.UseBadChannelTool           = False
 
 ToolSvc += MissingETData_antikt6_inversion
-print      MissingETData_antikt6_inversion
+printfunc (     MissingETData_antikt6_inversion)
 
 ContainerComparatorTool.MissingETData_array += [ MissingETData.getFullName() ]
 ContainerComparatorTool.MissingETData_array += [ MissingETData_antikt.getFullName() ]
@@ -460,7 +460,7 @@ BasicPlotsTool.bineta           = 5.0
 BasicPlotsTool.FolderName       = '/'
 
 ToolSvc += BasicPlotsTool
-print      BasicPlotsTool
+printfunc (     BasicPlotsTool)
 
 #############################################################
 #create a basic plots tool
@@ -485,7 +485,7 @@ BasicPlotsTool_cone4_inversion.bineta           = 5.0
 BasicPlotsTool_cone4_inversion.FolderName       = 'cone4_inversion/'
 
 ToolSvc += BasicPlotsTool_cone4_inversion
-print      BasicPlotsTool_cone4_inversion
+printfunc (     BasicPlotsTool_cone4_inversion)
 
 #############################################################
 #create a basic plots tool
@@ -510,7 +510,7 @@ BasicPlotsTool_cone7_inversion.bineta           = 5.0
 BasicPlotsTool_cone7_inversion.FolderName       = 'cone7_inversion/'
 
 ToolSvc += BasicPlotsTool_cone7_inversion
-print      BasicPlotsTool_cone7_inversion
+printfunc (     BasicPlotsTool_cone7_inversion)
 
 #############################################################
 #create a basic plots tool
@@ -535,7 +535,7 @@ BasicPlotsTool_cone7.bineta           = 5.0
 BasicPlotsTool_cone7.FolderName       = 'cone7/'
 
 ToolSvc += BasicPlotsTool_cone7
-print      BasicPlotsTool_cone7
+printfunc (     BasicPlotsTool_cone7)
 
 #############################################################
 #create a basic plots tool
@@ -560,7 +560,7 @@ BasicPlotsTool_antikt.bineta           = 5.0
 BasicPlotsTool_antikt.FolderName       = 'antikt/'
 
 ToolSvc += BasicPlotsTool_antikt
-print      BasicPlotsTool_antikt
+printfunc (     BasicPlotsTool_antikt)
 
 #############################################################
 #create a basic plots tool
@@ -585,7 +585,7 @@ BasicPlotsTool_antikt_inversion.bineta           = 5.0
 BasicPlotsTool_antikt_inversion.FolderName       = 'antikt_inversion/'
 
 ToolSvc += BasicPlotsTool_antikt_inversion
-print      BasicPlotsTool_antikt_inversion
+printfunc (     BasicPlotsTool_antikt_inversion)
 
 #############################################################
 #create a basic plots tool
@@ -610,7 +610,7 @@ BasicPlotsTool_antikt6.bineta           = 5.0
 BasicPlotsTool_antikt6.FolderName       = 'antikt6/'
 
 ToolSvc += BasicPlotsTool_antikt6
-print      BasicPlotsTool_antikt6
+printfunc (     BasicPlotsTool_antikt6)
 
 #############################################################
 #create a basic plots tool
@@ -635,7 +635,7 @@ BasicPlotsTool_antikt6_inversion.bineta           = 5.0
 BasicPlotsTool_antikt6_inversion.FolderName       = 'antikt6_inversion/'
 
 ToolSvc += BasicPlotsTool_antikt6_inversion
-print      BasicPlotsTool_antikt6_inversion
+printfunc (     BasicPlotsTool_antikt6_inversion)
 
 ContainerComparatorTool.BasicPlotsTools += [ BasicPlotsTool.getFullName() ]
 ContainerComparatorTool.BasicPlotsTools += [ BasicPlotsTool_antikt.getFullName() ]
@@ -697,7 +697,7 @@ ResolutionTool.usesumet           =   5
 ResolutionTool.FolderName       = '/'
 
 ToolSvc += ResolutionTool
-print      ResolutionTool
+printfunc (     ResolutionTool)
 
 #############################################################
 #create a resolution tool
@@ -732,7 +732,7 @@ ResolutionTool_cone7.usesumet           =   5
 ResolutionTool_cone7.FolderName       = 'cone7/'
 
 ToolSvc += ResolutionTool_cone7
-print      ResolutionTool_cone7
+printfunc (     ResolutionTool_cone7)
 
 #############################################################
 #create a resolution tool
@@ -767,7 +767,7 @@ ResolutionTool_cone7_inversion.usesumet           =   5
 ResolutionTool_cone7_inversion.FolderName       = 'cone7_inversion/'
 
 ToolSvc += ResolutionTool_cone7_inversion
-print      ResolutionTool_cone7_inversion
+printfunc (     ResolutionTool_cone7_inversion)
 
 #############################################################
 #create a resolution tool
@@ -802,7 +802,7 @@ ResolutionTool_cone4_inversion.usesumet           =   5
 ResolutionTool_cone4_inversion.FolderName       = 'cone4_inversion/'
 
 ToolSvc += ResolutionTool_cone4_inversion
-print      ResolutionTool_cone4_inversion
+printfunc (     ResolutionTool_cone4_inversion)
 
 #############################################################
 #create a resolution tool
@@ -837,7 +837,7 @@ ResolutionTool_antikt.usesumet           =   5
 ResolutionTool_antikt.FolderName       = 'antikt/'
 
 ToolSvc += ResolutionTool_antikt
-print      ResolutionTool_antikt
+printfunc (     ResolutionTool_antikt)
 
 #############################################################
 #create a resolution tool
@@ -872,7 +872,7 @@ ResolutionTool_antikt_inversion.usesumet           =   5
 ResolutionTool_antikt_inversion.FolderName       = 'antikt_inversion/'
 
 ToolSvc += ResolutionTool_antikt_inversion
-print      ResolutionTool_antikt_inversion
+printfunc (     ResolutionTool_antikt_inversion)
 
 #############################################################
 #create a resolution tool
@@ -907,7 +907,7 @@ ResolutionTool_antikt6.usesumet           =   5
 ResolutionTool_antikt6.FolderName       = 'antikt6/'
 
 ToolSvc += ResolutionTool_antikt6
-print      ResolutionTool_antikt6
+printfunc (     ResolutionTool_antikt6)
 
 #############################################################
 #create a resolution tool
@@ -942,7 +942,7 @@ ResolutionTool_antikt6_inversion.usesumet           =   5
 ResolutionTool_antikt6_inversion.FolderName       = 'antikt6_inversion/'
 
 ToolSvc += ResolutionTool_antikt6_inversion
-print      ResolutionTool_antikt6_inversion
+printfunc (     ResolutionTool_antikt6_inversion)
 
 ContainerComparatorTool.ResolutionTools += [ ResolutionTool.getFullName() ]
 ContainerComparatorTool.ResolutionTools += [ ResolutionTool_antikt.getFullName() ]
@@ -990,7 +990,7 @@ LinearityTool.etmi_threshold=50.
 LinearityTool.FolderName       = '/'
 
 ToolSvc += LinearityTool
-print      LinearityTool
+printfunc (     LinearityTool)
 
 #############################################################
 #create a linearity tool
@@ -1017,7 +1017,7 @@ LinearityTool_cone7.etmi_threshold=50.
 LinearityTool_cone7.FolderName       = 'cone7/'
 
 ToolSvc += LinearityTool_cone7
-print      LinearityTool_cone7
+printfunc (     LinearityTool_cone7)
 
 #############################################################
 #create a linearity tool
@@ -1044,7 +1044,7 @@ LinearityTool_cone7_inversion.etmi_threshold=50.
 LinearityTool_cone7_inversion.FolderName       = 'cone7_inversion/'
 
 ToolSvc += LinearityTool_cone7_inversion
-print      LinearityTool_cone7_inversion
+printfunc (     LinearityTool_cone7_inversion)
 
 #############################################################
 #create a linearity tool
@@ -1071,7 +1071,7 @@ LinearityTool_cone4_inversion.etmi_threshold=50.
 LinearityTool_cone4_inversion.FolderName       = 'cone4_inversion/'
 
 ToolSvc += LinearityTool_cone4_inversion
-print      LinearityTool_cone4_inversion
+printfunc (     LinearityTool_cone4_inversion)
 
 #############################################################
 #create a linearity tool
@@ -1098,7 +1098,7 @@ LinearityTool_antikt.etmi_threshold=50.
 LinearityTool_antikt.FolderName       = 'antikt/'
 
 ToolSvc += LinearityTool_antikt
-print      LinearityTool_antikt
+printfunc (     LinearityTool_antikt)
 
 #############################################################
 #create a linearity tool
@@ -1125,7 +1125,7 @@ LinearityTool_antikt_inversion.etmi_threshold=50.
 LinearityTool_antikt_inversion.FolderName       = 'antikt_inversion/'
 
 ToolSvc += LinearityTool_antikt_inversion
-print      LinearityTool_antikt_inversion
+printfunc (     LinearityTool_antikt_inversion)
 
 #############################################################
 #create a linearity tool
@@ -1152,7 +1152,7 @@ LinearityTool_antikt6.etmi_threshold=50.
 LinearityTool_antikt6.FolderName       = 'antikt6/'
 
 ToolSvc += LinearityTool_antikt6
-print      LinearityTool_antikt6
+printfunc (     LinearityTool_antikt6)
 
 #############################################################
 #create a linearity tool
@@ -1179,7 +1179,7 @@ LinearityTool_antikt6_inversion.etmi_threshold=50.
 LinearityTool_antikt6_inversion.FolderName       = 'antikt6_inversion/'
 
 ToolSvc += LinearityTool_antikt6_inversion
-print      LinearityTool_antikt6_inversion
+printfunc (     LinearityTool_antikt6_inversion)
 
 ContainerComparatorTool.LinearityTools += [ LinearityTool.getFullName() ]
 ContainerComparatorTool.LinearityTools += [ LinearityTool_antikt.getFullName() ]
@@ -1202,4 +1202,4 @@ ContainerComparatorTool.Data_Linearity_pairs = [
 ]
 
 ToolSvc += ContainerComparatorTool
-print      ContainerComparatorTool
+printfunc (     ContainerComparatorTool)
diff --git a/Reconstruction/MissingETPerformance/share/CosmicsCleanerTool_jobOptions.py b/Reconstruction/MissingETPerformance/share/CosmicsCleanerTool_jobOptions.py
index edbbb7e541f0d06ee9b10e5d46261b8aac4ea401..ea1f5f1e5edf3526c808e17251568bc9e8e52e07 100644
--- a/Reconstruction/MissingETPerformance/share/CosmicsCleanerTool_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/CosmicsCleanerTool_jobOptions.py
@@ -5,4 +5,4 @@ CosmicsCleanerTool = ConfiguredCosmicsCleanerTool(
     )
 
 ToolSvc += CosmicsCleanerTool
-print      CosmicsCleanerTool
+printfunc (     CosmicsCleanerTool)
diff --git a/Reconstruction/MissingETPerformance/share/EtaRings_jobOptions.py b/Reconstruction/MissingETPerformance/share/EtaRings_jobOptions.py
index 91d342338682738fe98f697c097f2ad5ef10e6a8..ccd1885b1d3f64a0cba7ae6e5653b9b67e9f5a8b 100644
--- a/Reconstruction/MissingETPerformance/share/EtaRings_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/EtaRings_jobOptions.py
@@ -6,4 +6,4 @@ EtaRingsTool = ConfiguredEtaRingsTool(
     )
 
 ToolSvc += EtaRingsTool
-print      EtaRingsTool
+printfunc (     EtaRingsTool)
diff --git a/Reconstruction/MissingETPerformance/share/FakeMissingET_jobOptions.py b/Reconstruction/MissingETPerformance/share/FakeMissingET_jobOptions.py
index 218c5bd2e7c741a9cb0645aeba5457bee5607893..ccea1464a4b23db6614a5455c5193409024babf6 100644
--- a/Reconstruction/MissingETPerformance/share/FakeMissingET_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/FakeMissingET_jobOptions.py
@@ -17,4 +17,4 @@ FakeMissingETTool = ConfiguredFakeMissingETTool(
 
 ToolSvc += FakeMissingETTool
 FakeMissingETTool.OutputLevel = INFO
-print      FakeMissingETTool
+printfunc (     FakeMissingETTool)
diff --git a/Reconstruction/MissingETPerformance/share/JetVariablesTool_jobOptions.py b/Reconstruction/MissingETPerformance/share/JetVariablesTool_jobOptions.py
index 92314d2ea377c9b9a389b8150fbd783f8417fae7..4452013ca6d5f3ec06d1b925f9c938501765eeb1 100644
--- a/Reconstruction/MissingETPerformance/share/JetVariablesTool_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/JetVariablesTool_jobOptions.py
@@ -11,4 +11,4 @@ JetVariablesTool = ConfiguredJetVariablesTool(
     )
 
 ToolSvc += JetVariablesTool
-print      JetVariablesTool
+printfunc (     JetVariablesTool)
diff --git a/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py b/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py
index 8604e95af1c081ab73408cdcc625f6310aa640ac..2674238d33fc3802ca8c5680e328fca19356e778 100644
--- a/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py
@@ -23,4 +23,4 @@ LinearityTool = ConfiguredLinearityTool(
     )
 
 ToolSvc += LinearityTool
-print      LinearityTool
+printfunc (     LinearityTool)
diff --git a/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py_j4 b/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py_j4
index 8604e95af1c081ab73408cdcc625f6310aa640ac..2674238d33fc3802ca8c5680e328fca19356e778 100644
--- a/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py_j4
+++ b/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py_j4
@@ -23,4 +23,4 @@ LinearityTool = ConfiguredLinearityTool(
     )
 
 ToolSvc += LinearityTool
-print      LinearityTool
+printfunc (     LinearityTool)
diff --git a/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py_minbias b/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py_minbias
index 497a314f8948306b46c24a511645ac9837936da5..4c7a5c68f6ce5d57d44f9f2544329b487dbf30ca 100644
--- a/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py_minbias
+++ b/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py_minbias
@@ -23,4 +23,4 @@ LinearityTool = ConfiguredLinearityTool(
     )
 
 ToolSvc += LinearityTool
-print      LinearityTool
+printfunc (     LinearityTool)
diff --git a/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py_wenu b/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py_wenu
index 89e800ce6d763c3a1a02a97bbd8675b4a26af799..73810cda9880f643db17ca96eb44a38288e48523 100644
--- a/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py_wenu
+++ b/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py_wenu
@@ -23,4 +23,4 @@ LinearityTool = ConfiguredLinearityTool(
     )
 
 ToolSvc += LinearityTool
-print      LinearityTool
+printfunc (     LinearityTool)
diff --git a/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py_ztautau b/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py_ztautau
index d36542bff87fc9bbae68fc9b9d31b5bf5b86e7ba..ca7617115e1c81fef30a6ac0ddf07084668335d0 100644
--- a/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py_ztautau
+++ b/Reconstruction/MissingETPerformance/share/Linearity_jobOptions.py_ztautau
@@ -23,4 +23,4 @@ LinearityTool = ConfiguredLinearityTool(
     )
 
 ToolSvc += LinearityTool
-print      LinearityTool
+printfunc (     LinearityTool)
diff --git a/Reconstruction/MissingETPerformance/share/MissingETComposition_jobOptions.py b/Reconstruction/MissingETPerformance/share/MissingETComposition_jobOptions.py
index afd9ed704a641b5dd7a67041aaac79d896707d0c..e32afd54b35c30c7f7ba7c36e36a443a27ac0dbb 100644
--- a/Reconstruction/MissingETPerformance/share/MissingETComposition_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/MissingETComposition_jobOptions.py
@@ -10,4 +10,4 @@ MissingETCompositionTool = ConfiguredMissingETCompositionTool(
     )
 
 ToolSvc += MissingETCompositionTool
-print      MissingETCompositionTool
+printfunc (     MissingETCompositionTool)
diff --git a/Reconstruction/MissingETPerformance/share/MissingETData_jobOptions.py b/Reconstruction/MissingETPerformance/share/MissingETData_jobOptions.py
index 9fa31ec4cd31ae9cc4261632f9f7296cbc4a2c8a..dd8225efa2fe0412a47f45e549d240a37f8b7b74 100644
--- a/Reconstruction/MissingETPerformance/share/MissingETData_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/MissingETData_jobOptions.py
@@ -94,4 +94,4 @@ if MissingETData.getCaloCells == True:
         MissingETData.BadChannelMasker = theLArMasker
 
 ToolSvc += MissingETData
-print      MissingETData
+printfunc (     MissingETData)
diff --git a/Reconstruction/MissingETPerformance/share/MissingETEventSelector_jobOptions.py b/Reconstruction/MissingETPerformance/share/MissingETEventSelector_jobOptions.py
index cb314b80b7bc297ddd75510e503b90e3505076a2..419fa42a94189db9c39d0798f703013bb6d2d93e 100644
--- a/Reconstruction/MissingETPerformance/share/MissingETEventSelector_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/MissingETEventSelector_jobOptions.py
@@ -59,4 +59,4 @@ if MissingETEventSelector.SelectionType == "passesMBTSCut":
     include( "RecExCond/AllDet_detDescr.py")
 
 ToolSvc += MissingETEventSelector
-print      MissingETEventSelector
+printfunc (     MissingETEventSelector)
diff --git a/Reconstruction/MissingETPerformance/share/MissingETMuonData_jobOptions.py b/Reconstruction/MissingETPerformance/share/MissingETMuonData_jobOptions.py
index e9b726c7fdead01c52b04949a35d2cdbc28a82a3..9a35af34aea91535d8aefc1dc14d707384d3ceb6 100644
--- a/Reconstruction/MissingETPerformance/share/MissingETMuonData_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/MissingETMuonData_jobOptions.py
@@ -11,4 +11,4 @@ MissingETMuonData = ConfiguredMissingETMuonData(
     )
 
 ToolSvc += MissingETMuonData
-print      MissingETMuonData
+printfunc (     MissingETMuonData)
diff --git a/Reconstruction/MissingETPerformance/share/MissingETPerformance_Scale_topOptions.py b/Reconstruction/MissingETPerformance/share/MissingETPerformance_Scale_topOptions.py
index 68b15cb0467fd493fa4784352b252a9f96fb81f4..76d5eded2b1e2f8dba3893fa509fe7960427bb8f 100755
--- a/Reconstruction/MissingETPerformance/share/MissingETPerformance_Scale_topOptions.py
+++ b/Reconstruction/MissingETPerformance/share/MissingETPerformance_Scale_topOptions.py
@@ -123,4 +123,4 @@ AthenaEventLoopMgr = Service ( "AthenaEventLoopMgr")
 try:
     AthenaEventLoopMgr.EventPrintoutInterval = 1000
 except Exception:
-    print 'EventPrintoutInterval exception, defaults to 1'
+    printfunc ('EventPrintoutInterval exception, defaults to 1')
diff --git a/Reconstruction/MissingETPerformance/share/MissingETPerformance_Zee_topOptions.py b/Reconstruction/MissingETPerformance/share/MissingETPerformance_Zee_topOptions.py
index 898c2463d313fe2ba4fece71ecc7f4823a380273..b2028d0bfbd1b03ec4d6a3c7c6f63ceee77a54c0 100755
--- a/Reconstruction/MissingETPerformance/share/MissingETPerformance_Zee_topOptions.py
+++ b/Reconstruction/MissingETPerformance/share/MissingETPerformance_Zee_topOptions.py
@@ -112,4 +112,4 @@ AthenaEventLoopMgr = Service ( "AthenaEventLoopMgr")
 try:
     AthenaEventLoopMgr.EventPrintoutInterval = 100
 except Exception:
-    print 'EventPrintoutInterval exception, defaults to 1'
+    printfunc ('EventPrintoutInterval exception, defaults to 1')
diff --git a/Reconstruction/MissingETPerformance/share/MissingETPerformance_Zmumu_topOptions.py b/Reconstruction/MissingETPerformance/share/MissingETPerformance_Zmumu_topOptions.py
index a0b273a5468e6a00b2e3b2f6f32559d88be735a0..8cfbc45b5b9d7f4a1a481e70b4683548a8b4b290 100755
--- a/Reconstruction/MissingETPerformance/share/MissingETPerformance_Zmumu_topOptions.py
+++ b/Reconstruction/MissingETPerformance/share/MissingETPerformance_Zmumu_topOptions.py
@@ -111,4 +111,4 @@ AthenaEventLoopMgr = Service ( "AthenaEventLoopMgr")
 try:
     AthenaEventLoopMgr.EventPrintoutInterval = 100
 except Exception:
-    print 'EventPrintoutInterval exception, defaults to 1'
+    printfunc ('EventPrintoutInterval exception, defaults to 1')
diff --git a/Reconstruction/MissingETPerformance/share/MissingETPerformance_topOptions.py b/Reconstruction/MissingETPerformance/share/MissingETPerformance_topOptions.py
index e251189bc7da57cd5f49b5dd87265c4cf63f5fdf..0aacd4e9f278936d61c3d34ed00a3811dfa4bb39 100755
--- a/Reconstruction/MissingETPerformance/share/MissingETPerformance_topOptions.py
+++ b/Reconstruction/MissingETPerformance/share/MissingETPerformance_topOptions.py
@@ -97,4 +97,4 @@ AthenaEventLoopMgr = Service ( "AthenaEventLoopMgr")
 try:
   AthenaEventLoopMgr.EventPrintoutInterval = 100
 except Exception:
-  print 'EventPrintoutInterval exception, defaults to 1'
+  printfunc ('EventPrintoutInterval exception, defaults to 1')
diff --git a/Reconstruction/MissingETPerformance/share/MuonTool_jobOptions.py b/Reconstruction/MissingETPerformance/share/MuonTool_jobOptions.py
index 569b3ae8c97656c04598b5699b56af35cd33af2e..251ad75f4e85855df0655e9105c29b41d3f29fbf 100644
--- a/Reconstruction/MissingETPerformance/share/MuonTool_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/MuonTool_jobOptions.py
@@ -8,4 +8,4 @@ MuonTool = ConfiguredMuonTool(
     )
 
 ToolSvc += MuonTool
-print      MuonTool
+printfunc (     MuonTool)
diff --git a/Reconstruction/MissingETPerformance/share/MyFilter.py b/Reconstruction/MissingETPerformance/share/MyFilter.py
index 4b5101468792cbc855d9b5110096906acf14ff22..8b8b022925385ba78fbaa33b7f42fbf69bbe0a80 100644
--- a/Reconstruction/MissingETPerformance/share/MyFilter.py
+++ b/Reconstruction/MissingETPerformance/share/MyFilter.py
@@ -115,7 +115,7 @@ class EventFilter( PyAthena.Alg ):
             run_number = id.run_number()
             event_number = id.event_number()
         except Exception:
-            print 'failed to get run number and event number'
+            printfunc ('failed to get run number and event number')
 
         if (run_number, event_number) in self.run_event_list:
             self.setFilterPassed(True)
diff --git a/Reconstruction/MissingETPerformance/share/PileUp_jobOptions.py b/Reconstruction/MissingETPerformance/share/PileUp_jobOptions.py
index fce370ecec52aabeca0b890e23d8b5499a2d31cb..4b541e91380706dea2d63684291d361477aeada1 100644
--- a/Reconstruction/MissingETPerformance/share/PileUp_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/PileUp_jobOptions.py
@@ -8,4 +8,4 @@ pileUpTool = PileUpTool()
 #ToolSvc.MissingETData.METTruthKey = 'MET_Truth_PileUp'
 
 ToolSvc += pileUpTool
-print      pileUpTool
+printfunc (     pileUpTool)
diff --git a/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py b/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py
index ed7531d9f7cb3e4b960b675fea5368607da2a92c..9b320f39ccd869b8996ed05a4b11091a16377d8b 100644
--- a/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py
@@ -32,4 +32,4 @@ ResolutionTool = ConfiguredResolutionTool(
     )
 
 ToolSvc += ResolutionTool
-print      ResolutionTool
+printfunc (     ResolutionTool)
diff --git a/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py_j4 b/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py_j4
index fc66730c5eeb01feb6f3f579e3fa627dbacace36..8959d9e8254ed7286a01d7ac2a7f5977b147ba6a 100644
--- a/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py_j4
+++ b/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py_j4
@@ -31,4 +31,4 @@ ResolutionTool = ConfiguredResolutionTool(
     )
 
 ToolSvc += ResolutionTool
-print      ResolutionTool
+printfunc (     ResolutionTool)
diff --git a/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py_minbias b/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py_minbias
index 79d5e90f196d7cd11cd774ab50804c2d7c9fc301..b6d38c5da0539d52d5c8bae1a794808cb380595a 100644
--- a/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py_minbias
+++ b/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py_minbias
@@ -32,4 +32,4 @@ ResolutionTool = ConfiguredResolutionTool(
     )
 
 ToolSvc += ResolutionTool
-print      ResolutionTool
+printfunc (     ResolutionTool)
diff --git a/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py_wenu b/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py_wenu
index 0c72b2a67dc6e9b61568f0ef02a6e121f02f5f0e..0a1bd1ab5178e1526639077b5b6ff571d19b2964 100644
--- a/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py_wenu
+++ b/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py_wenu
@@ -32,4 +32,4 @@ ResolutionTool = ConfiguredResolutionTool(
     )
 
 ToolSvc += ResolutionTool
-print      ResolutionTool
+printfunc (     ResolutionTool)
diff --git a/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py_ztautau b/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py_ztautau
index 4dafce840d215186d2313ebc08419bebbf918c29..978fdfe619c4e31db014cf757a15ed6694f3122c 100644
--- a/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py_ztautau
+++ b/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions.py_ztautau
@@ -31,4 +31,4 @@ ResolutionTool = ConfiguredResolutionTool(
     )
 
 ToolSvc += ResolutionTool
-print      ResolutionTool
+printfunc (     ResolutionTool)
diff --git a/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions_900mb.py b/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions_900mb.py
index ed7531d9f7cb3e4b960b675fea5368607da2a92c..9b320f39ccd869b8996ed05a4b11091a16377d8b 100644
--- a/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions_900mb.py
+++ b/Reconstruction/MissingETPerformance/share/ResolutionTool_jobOptions_900mb.py
@@ -32,4 +32,4 @@ ResolutionTool = ConfiguredResolutionTool(
     )
 
 ToolSvc += ResolutionTool
-print      ResolutionTool
+printfunc (     ResolutionTool)
diff --git a/Reconstruction/MissingETPerformance/share/SplitElectronContainer_jobOptions.py b/Reconstruction/MissingETPerformance/share/SplitElectronContainer_jobOptions.py
index a2c16b6506a39e9e9943aaaee4e7cbc8e59d7f0e..ce70d3b3f55d7b29aa833fc19e6e4f40d550d092 100644
--- a/Reconstruction/MissingETPerformance/share/SplitElectronContainer_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/SplitElectronContainer_jobOptions.py
@@ -26,4 +26,4 @@ topSequence = AlgSequence()
 
 topSequence.ZeeSequence += SplitElectronContainer
 
-print SplitElectronContainer
+printfunc (SplitElectronContainer)
diff --git a/Reconstruction/MissingETPerformance/share/TopoClusterVariablesTool_jobOptions.py b/Reconstruction/MissingETPerformance/share/TopoClusterVariablesTool_jobOptions.py
index 584c043d996bb5fca174261ec0b6abf54d4ceeef..6658e3fe5b01f64cc3e774aab583beec2e209e35 100644
--- a/Reconstruction/MissingETPerformance/share/TopoClusterVariablesTool_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/TopoClusterVariablesTool_jobOptions.py
@@ -9,4 +9,4 @@ TopoClusterVariablesTool = ConfiguredTopoClusterVariablesTool(
     )
 
 ToolSvc += TopoClusterVariablesTool
-print      TopoClusterVariablesTool
+printfunc (     TopoClusterVariablesTool)
diff --git a/Reconstruction/MissingETPerformance/share/TrigMissingET_jobOptions.py b/Reconstruction/MissingETPerformance/share/TrigMissingET_jobOptions.py
index 4374e476d4f94eb4bb51adc3e521373fa0360704..e5e93691118a28bc5aa9a9f6cc4237b6656f2b45 100644
--- a/Reconstruction/MissingETPerformance/share/TrigMissingET_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/TrigMissingET_jobOptions.py
@@ -8,4 +8,4 @@ ToolSvc += TrigMissingETTool
 
 TrigMissingETTool.OutputLevel = INFO
 
-print   TrigMissingETTool
+printfunc (  TrigMissingETTool)
diff --git a/Reconstruction/MissingETPerformance/share/TrigVsOfflineMissingET_jobOptions.py b/Reconstruction/MissingETPerformance/share/TrigVsOfflineMissingET_jobOptions.py
index 6048054d231c190f14c63f7b417b131bdbfda473..bb95e451221c3981ea6fc26970e25ac91c756afe 100644
--- a/Reconstruction/MissingETPerformance/share/TrigVsOfflineMissingET_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/TrigVsOfflineMissingET_jobOptions.py
@@ -37,4 +37,4 @@ TrigVsOfflineMissingETTool.ComputeTriggerEfficiency = True
 # Delta-R between 
 TrigVsOfflineMissingETTool.DeltaRCut = 0.3
             
-print   TrigVsOfflineMissingETTool
+printfunc (  TrigVsOfflineMissingETTool)
diff --git a/Reconstruction/MissingETPerformance/share/ZMuMu_jobOptions.py b/Reconstruction/MissingETPerformance/share/ZMuMu_jobOptions.py
index 756caaca89f55c2da18e8e0e6d1ff0eb7f45eabf..7b07b9b74285315efb9b0c59adbb64f78e7731e0 100644
--- a/Reconstruction/MissingETPerformance/share/ZMuMu_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/ZMuMu_jobOptions.py
@@ -27,4 +27,4 @@ ZMuMuTool = ConfiguredZMuMuTool(
     )
 
 ToolSvc += ZMuMuTool
-print      ZMuMuTool
+printfunc (     ZMuMuTool)
diff --git a/Reconstruction/MissingETPerformance/share/ZeeSequencer_jobOptions.py b/Reconstruction/MissingETPerformance/share/ZeeSequencer_jobOptions.py
index f74efdb602fe7a00acb6d0698ff4106060714b65..0f45c3ec0645d7272a80659804e01a823adae4bc 100644
--- a/Reconstruction/MissingETPerformance/share/ZeeSequencer_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/ZeeSequencer_jobOptions.py
@@ -18,4 +18,4 @@ topSequence += AthSequencer('ZeeSequence')
 
 topSequence.ZeeSequence += ZeeSequencer
 
-print ZeeSequencer
+printfunc (ZeeSequencer)
diff --git a/Reconstruction/MissingETPerformance/share/Zee_jobOptions.py b/Reconstruction/MissingETPerformance/share/Zee_jobOptions.py
index d26d0961bb329fe8573b47eb4af78a6d76beb3e6..42842df47f31be25415458a7a5d2cd1a011ab28e 100644
--- a/Reconstruction/MissingETPerformance/share/Zee_jobOptions.py
+++ b/Reconstruction/MissingETPerformance/share/Zee_jobOptions.py
@@ -24,4 +24,4 @@ ZeeTool = ConfiguredZeeTool(
     )
 
 ToolSvc += ZeeTool
-print      ZeeTool
+printfunc (     ZeeTool)
diff --git a/Reconstruction/MissingETPerformance/share/compareReleases.py b/Reconstruction/MissingETPerformance/share/compareReleases.py
index c0236f309547f1f8490292f80bcf64e459db9989..bf8fccbcaa72b6763291bfef0226c7decbc33ca7 100644
--- a/Reconstruction/MissingETPerformance/share/compareReleases.py
+++ b/Reconstruction/MissingETPerformance/share/compareReleases.py
@@ -162,4 +162,4 @@ AthenaEventLoopMgr = Service ( "AthenaEventLoopMgr")
 try:
     AthenaEventLoopMgr.EventPrintoutInterval = 1
 except Exception:
-    print 'EventPrintoutInterval exception, defaults to 1'
+    printfunc ('EventPrintoutInterval exception, defaults to 1')