diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValBtag_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValBtag_jobOptions.py
index 05c0f7974c7563f65c4bd6f4d9e72063514cb7c6..a80752ae56d1c3d3913166d3e11ed196584d0182 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValBtag_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValBtag_jobOptions.py
@@ -5,8 +5,5 @@ tool1.OutputLevel = WARNING
 tool1.DetailLevel = 10
 tool1.isData = True
 
-from AthenaCommon.AppMgr import ToolSvc
-ToolSvc += tool1
-
 monMan = CfgMgr.AthenaMonManager("PhysValMonManager")
 monMan.AthenaMonTools += [ tool1 ]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValEgamma_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValEgamma_jobOptions.py
index afeeb95b93a2855499a86e078787b099e5c9bb02..d776e03522313b12599fc765509f47d026051e3e 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValEgamma_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValEgamma_jobOptions.py
@@ -9,8 +9,5 @@ tool1.ElectronContainerName = "Electrons"
 tool1.ElectronContainerFrwdName = "ForwardElectrons"
 tool1.TruthParticleContainerName = "TruthParticles"
 
-from AthenaCommon.AppMgr import ToolSvc
-ToolSvc += tool1
-
 monMan = CfgMgr.AthenaMonManager("PhysValMonManager")
 monMan.AthenaMonTools += [ tool1 ]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValExample_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValExample_jobOptions.py
index 8f139ae8472be4067e012e39f9f6d7b3526cf7a6..52af3a6811b36da3117a554d8a98a64d8c12ff90 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValExample_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValExample_jobOptions.py
@@ -8,8 +8,6 @@ tool1.TauContainerName = "TauJets"
 tool1.PhotonContainerName = "Photons"
 tool1.ElectronContainerName = "Electrons"
 tool1.METContainerName = "MET_Reference_AntiKt4LCTopo"
-from AthenaCommon.AppMgr import ToolSvc
-ToolSvc += tool1
 
 monMan = CfgMgr.AthenaMonManager("PhysValMonManager")
 monMan.AthenaMonTools += [ tool1 ]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValInDet_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValInDet_jobOptions.py
index f6180f2d7f951566d194b4ee3e0621520dff3dd3..d31b7b96e22a924065a07850e54f7fa8a21b1ef8 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValInDet_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValInDet_jobOptions.py
@@ -7,25 +7,20 @@ from InDetPhysValMonitoring.InDetPhysValMonitoringTool import InDetPhysValMonito
 from InDetPhysValMonitoring.InDetPhysValJobProperties import InDetPhysValFlags
 
 indet_mon_tool = InDetPhysValMonitoringTool.InDetPhysValMonitoringTool()
-ToolSvc += [indet_mon_tool] 
 monMan.AthenaMonTools += [indet_mon_tool] 
 
 if InDetPhysValFlags.doValidateDBMTracks():
     indet_mon_tool_DBM = InDetPhysValMonitoringTool.InDetPhysValMonitoringToolDBM()
-    ToolSvc += [ indet_mon_tool_DBM ]
     monMan.AthenaMonTools += [ indet_mon_tool_DBM ] 
 
 if InDetPhysValFlags.doValidateGSFTracks():
     indet_mon_tool_GSF = InDetPhysValMonitoringTool.InDetPhysValMonitoringToolGSF()
-    ToolSvc += [ indet_mon_tool_GSF ]
     monMan.AthenaMonTools += [ indet_mon_tool_GSF ]
 
 if InDetPhysValFlags.doValidateLooseTracks():
     indet_mon_tool_Loose = InDetPhysValMonitoringTool.InDetPhysValMonitoringToolLoose()
-    ToolSvc += [ indet_mon_tool_Loose ]
     monMan.AthenaMonTools += [ indet_mon_tool_Loose ] 
 
 if InDetPhysValFlags.doValidateTightPrimaryTracks():
     indet_mon_tool_TightPrimary = InDetPhysValMonitoringTool.InDetPhysValMonitoringToolTightPrimary()
-    ToolSvc += [ indet_mon_tool_TightPrimary ]
     monMan.AthenaMonTools += [ indet_mon_tool_TightPrimary ] 
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValJet_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValJet_jobOptions.py
index 5a238ea1f7f29fde5ff0fbd75afe2ee888e8c54f..c530ceb649dad7217b61e883f396ba6b036fb5db 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValJet_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValJet_jobOptions.py
@@ -4,8 +4,5 @@ tool1.EnableLumi = False
 tool1.OutputLevel = WARNING
 tool1.DetailLevel = 10
 
-from AthenaCommon.AppMgr import ToolSvc
-ToolSvc += tool1
-
 monMan = CfgMgr.AthenaMonManager("PhysValMonManager")
 monMan.AthenaMonTools += [ tool1 ]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValMET_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValMET_jobOptions.py
index 20d4b9a68886765a8091a2d03b267f25e5610683..c9df20d9990068145fb45bfa24b566ac5e78f289 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValMET_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValMET_jobOptions.py
@@ -49,7 +49,5 @@ tauseltool = CfgMgr.TauAnalysisTools__TauSelectionTool("TauSelectionTool")
 ToolSvc += tauseltool
 tool1.TauSelectionTool = tauseltool
 
-ToolSvc += tool1
-
 monMan = CfgMgr.AthenaMonManager("PhysValMonManager")
 monMan.AthenaMonTools += [ tool1 ]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValMuon_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValMuon_jobOptions.py
index 2ac9ba9127697e9daf35b63e0de34e5d7a7eec12..f58c09317985cd27b158eaad835f83fbad13e175 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValMuon_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValMuon_jobOptions.py
@@ -67,8 +67,5 @@ tool1.EnableLumi = False
 tool1.OutputLevel = WARNING
 tool1.DetailLevel = 10
 
-from AthenaCommon.AppMgr import ToolSvc
-ToolSvc += tool1
-
 monMan = CfgMgr.AthenaMonManager("PhysValMonManager")
 monMan.AthenaMonTools += [ tool1 ]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValPFlow_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValPFlow_jobOptions.py
index fd721e9239e6ef40c96aff4929f01706ac00e5e6..24f437a6f856350e59d451535c0fb75b317b5598 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValPFlow_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValPFlow_jobOptions.py
@@ -9,8 +9,6 @@ PhysValPFO_charged.OutputLevel = WARNING
 PhysValPFO_charged.DetailLevel = 10
 PhysValPFO_charged.EnableLumi = False
 
-from AthenaCommon.AppMgr import ToolSvc
-ToolSvc += PhysValPFO_charged
 monMan.AthenaMonTools += [ PhysValPFO_charged ]
 
 PhysValPFO_neutral_EM = PhysValPFO("PhysValPFO_neutral")
@@ -20,5 +18,4 @@ PhysValPFO_neutral_EM.EnableLumi = False
 PhysValPFO_neutral_EM.PFOContainerName="JetETMissNeutralParticleFlowObjects";
 PhysValPFO_neutral_EM.useNeutralPFO = True
 
-ToolSvc += PhysValPFO_neutral_EM
 monMan.AthenaMonTools += [ PhysValPFO_neutral_EM ]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValSUSY_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValSUSY_jobOptions.py
index 35e75db8b1b928b6f74ab87eb24a10ea2f37c756..e0e5a93a8576bfb4c292501995397c74daa85c7b 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValSUSY_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValSUSY_jobOptions.py
@@ -41,7 +41,6 @@ if run_default_rel19:
   tool1.UseTruthInformation = True
 
   from AthenaCommon.AppMgr import ToolSvc
-  ToolSvc += tool1
 
   monMan = CfgMgr.AthenaMonManager("PhysValMonManager")
   monMan.AthenaMonTools += [ tool1 ]
@@ -123,4 +122,4 @@ if run_migrated_rel17_tools:
   else:
     SusyPlot.susyTool.HistBaseDirectory = "/PhysVal/SUSY/ETmiss/"
 
-    
\ No newline at end of file
+    
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValSlowMuon_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValSlowMuon_jobOptions.py
index bb94b735a8bbef887088bf5cd30d8ad561605c24..6cbc6cc47b3e679e8f2b5d3c3f85dfd85f983bac 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValSlowMuon_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValSlowMuon_jobOptions.py
@@ -35,8 +35,5 @@ tool1.EnableLumi = False
 tool1.OutputLevel = ERROR
 tool1.DetailLevel = 10
 
-from AthenaCommon.AppMgr import ToolSvc
-ToolSvc += tool1
-
 monMan = CfgMgr.AthenaMonManager("PhysValMonManager")
 monMan.AthenaMonTools += [ tool1 ]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTau_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTau_jobOptions.py
index 4c1439e64ecf2051743365adcf071d87e58a4412..00e0c47bd5af200880c35e869e17359fca598ec3 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTau_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTau_jobOptions.py
@@ -10,9 +10,6 @@ if recFlags.doTruth():
 tool1.TauContainerName = "TauJets"
 tool1.TruthParticleContainerName = "TruthParticles"
 
-from AthenaCommon.AppMgr import ToolSvc
-ToolSvc += tool1
-
 monMan = CfgMgr.AthenaMonManager("PhysValMonManager")
 monMan.AthenaMonTools += [ tool1 ]
 
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTop_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTop_jobOptions.py
index aca93a0920d51a50df54ea1495272e320513351d..fd7c036b7bf559135aac58be2c1fb61cb5b11485 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTop_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTop_jobOptions.py
@@ -10,8 +10,5 @@ tool1.PhotonContainerName = "Photons"
 tool1.ElectronContainerName = "Electrons"
 tool1.TauContainerName = "TauJets"
 
-from AthenaCommon.AppMgr import ToolSvc
-ToolSvc += tool1
-
 monMan = CfgMgr.AthenaMonManager("PhysValMonManager")
 monMan.AthenaMonTools += [ tool1 ]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTopoCluster_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTopoCluster_jobOptions.py
index 21af5fb9edc82e80f45ecaf91818ef63a4b17ba0..57f4db49180732ca8e1f5bbebcab62b5e32cf40f 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTopoCluster_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTopoCluster_jobOptions.py
@@ -6,8 +6,6 @@ PhysValCluster_LC.DetailLevel = 10
 PhysValCluster_LC.EnableLumi = False
 PhysValCluster_LC.ClusterContainerName="CaloCalTopoClusters"
 
-from AthenaCommon.AppMgr import ToolSvc
-ToolSvc += PhysValCluster_LC
 monMan.AthenaMonTools += [ PhysValCluster_LC ]
 
 # new origin corrected clusters
@@ -18,5 +16,4 @@ PhysValCluster_origin.DetailLevel = 10
 PhysValCluster_origin.EnableLumi = False
 PhysValCluster_origin.ClusterContainerName="LCOriginTopoClusters"
 
-ToolSvc += PhysValCluster_origin
 monMan.AthenaMonTools += [ PhysValCluster_origin ]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigBjet_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigBjet_jobOptions.py
index 1ba483161709a56a89c7a2b649a448bcb3771660..5e3fa8582d0c58bc7ba4c63e28d0d2efebbbccd5 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigBjet_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigBjet_jobOptions.py
@@ -1,10 +1,8 @@
 from TrigBjetMonitoring.TrigBjetMonitoringConfig import TrigBjetMonitoringConfig
-for toolname in TrigBjetMonitoringConfig():
-    tool1 = getattr(ToolSvc, toolname.split('/')[-1])
+for tool1 in TrigBjetMonitoringConfig():
     tool1.EnableLumi = False
     tool1.OutputLevel = WARNING
     #tool1.DetailLevel = 10
                 
     tool1.EnableLumi = False
-    ToolSvc += tool1
     monMan.AthenaMonTools += [tool1]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigBphys_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigBphys_jobOptions.py
index 860ea75d3e0d45466ff826f8e595490b87faf4c6..16d425a0aea1feaf645c4aa8f3b49f90a66c8e9e 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigBphys_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigBphys_jobOptions.py
@@ -1,10 +1,8 @@
 from TrigBphysMonitoring.TrigBphysMonitoringConfig import TrigBphysMonitoringTool
-for toolname in TrigBphysMonitoringTool():
-    tool1 = getattr(ToolSvc, toolname.split('/')[-1])
+for tool1 in TrigBphysMonitoringTool():
     tool1.EnableLumi = False
     tool1.OutputLevel = WARNING
     #tool1.DetailLevel = 10
     
     tool1.EnableLumi = False
-    ToolSvc += tool1
     monMan.AthenaMonTools += [tool1]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigCalo_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigCalo_jobOptions.py
index 327a968dd31889964b412b85b9b6302bdfb4d252..0d78310cea6b6d2fd1de09591782df98e294ef0e 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigCalo_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigCalo_jobOptions.py
@@ -1,10 +1,8 @@
 from TrigCaloMonitoring.TrigCaloMonitoringConfig import HLTCaloMonitoringTool
-for toolname in HLTCaloMonitoringTool():
-    tool1 = getattr(ToolSvc, toolname.split('/')[-1])
+for tool1 in HLTCaloMonitoringTool():
     tool1.EnableLumi = False
     tool1.OutputLevel = WARNING
     #tool1.DetailLevel = 10
     
     tool1.EnableLumi = False
-    ToolSvc += tool1
     monMan.AthenaMonTools += [tool1]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigEgamma_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigEgamma_jobOptions.py
index 88ff796547698dfee5238ed3d4df78f5cb241e76..e7d5cfca43415bdd7a860eebe877dd7376957a4d 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigEgamma_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigEgamma_jobOptions.py
@@ -1,10 +1,8 @@
 from TrigEgammaMonitoring.TrigEgammaMonitoringConfig import TrigEgammaMonitoringTool
-for toolname in TrigEgammaMonitoringTool():
-    tool1 = getattr(ToolSvc, toolname.split('/')[-1])
+for tool1 in TrigEgammaMonitoringTool():
     tool1.EnableLumi = False
     tool1.OutputLevel = WARNING
     #tool1.DetailLevel = 10
     
     tool1.EnableLumi = False
-    ToolSvc += tool1
     monMan.AthenaMonTools += [tool1]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigHLTResult_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigHLTResult_jobOptions.py
index 78c56894314cf2d09aa4c9197bd4ef747c069195..b1c412090052eb4849324e63b8b17110e7006aff 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigHLTResult_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigHLTResult_jobOptions.py
@@ -1,6 +1,5 @@
 from TrigHLTMonitoring.TrigHLTMonitoringConfig import HLTGeneralTool
-for toolname in HLTGeneralTool():
-    tool1 = getattr(ToolSvc, toolname.split('/')[-1])
+for tool1 in HLTGeneralTool():
     #    tool1.histoPathBase      = "/Trigger/HLT"                                                                                                                                                    
     #    tool1.OutputLevel = WARNING                                                                                                                                                                  
     #tool1.DetailLevel = 10
@@ -16,5 +15,4 @@ for toolname in HLTGeneralTool():
     #                     'Jets'      : 'HLT_(FJ|j)[0-9]+.*',                                                                                                                                         
     #                     }                                                                                                                                                                           
     tool1.EnableLumi = False
-    ToolSvc += tool1
     monMan.AthenaMonTools += [tool1]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigIDtrk_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigIDtrk_jobOptions.py
index 7030040a8a683a8a21f48bd31c17470191b8b15a..6dd1b7099eb297fc5cdc98ad55dc29e1a22f9e0f 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigIDtrk_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigIDtrk_jobOptions.py
@@ -1,10 +1,8 @@
 from TrigIDtrkMonitoring.TrigIDPhysValMonitoringConfig import TrigIDPhysValMonitoringTool
-for toolname in TrigIDPhysValMonitoringTool():
-    tool1 = getattr(ToolSvc, toolname.split('/')[-1])
+for tool1 in TrigIDPhysValMonitoringTool():
     tool1.EnableLumi = False
     tool1.OutputLevel = WARNING
     #tool1.DetailLevel = 10
     
     tool1.EnableLumi = False
-    ToolSvc += tool1
     monMan.AthenaMonTools += [tool1]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigJet_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigJet_jobOptions.py
index cb8461351a00510178e0cdb0b1a5996d890adab8..10ece92771c025122b899bc67c8d73c8e646d51e 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigJet_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigJet_jobOptions.py
@@ -1,10 +1,8 @@
 from TrigJetMonitoring.TrigJetMonitoringConfig import TrigJetMonitoringTool
-for toolname in TrigJetMonitoringTool():
-    tool1 = getattr(ToolSvc, toolname.split('/')[-1])
+for tool1 in TrigJetMonitoringTool():
     tool1.EnableLumi = False
     tool1.OutputLevel = WARNING
     #tool1.DetailLevel = 10
     
     tool1.EnableLumi = False
-    ToolSvc += tool1
     monMan.AthenaMonTools += [tool1]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigMET_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigMET_jobOptions.py
index fef83e5ab0c47b40d5b3f8dd29d8919ac7d16dc4..0b1b45bbec547cd601f290dc3b5a89e591339339 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigMET_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigMET_jobOptions.py
@@ -1,10 +1,8 @@
 from TrigMETMonitoring.TrigMETMonitoringConfig import HLTMETMonitoringTool
-for toolname in HLTMETMonitoringTool():
-    tool1 = getattr(ToolSvc, toolname.split('/')[-1])
+for tool1 in HLTMETMonitoringTool():
     tool1.EnableLumi = False
     tool1.OutputLevel = WARNING
     #tool1.DetailLevel = 10
     
     tool1.EnableLumi = False
-    ToolSvc += tool1
     monMan.AthenaMonTools += [tool1]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigMinBias_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigMinBias_jobOptions.py
index c8055bf3dca6d35c650f62784532351c68c7449b..09a854835de6e14221badca844e28055910d4c2e 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigMinBias_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigMinBias_jobOptions.py
@@ -1,10 +1,8 @@
 from TrigMinBiasMonitoring.TrigMinBiasMonitoringConfig import TrigMinBiasMonitoringTool
-for toolname in TrigMinBiasMonitoringTool():
-    tool1 = getattr(ToolSvc, toolname.split('/')[-1])
+for tool1 in TrigMinBiasMonitoringTool():
     tool1.EnableLumi = False
     tool1.OutputLevel = WARNING
     #tool1.DetailLevel = 10
     
     tool1.EnableLumi = False
-    ToolSvc += tool1
     monMan.AthenaMonTools += [tool1]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigMuon_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigMuon_jobOptions.py
index 8a02e5d19ef1d51abd01db5052399f433d347de2..aef145a6c0bb606a119771c8f6a20a1bdb3eaff8 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigMuon_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigMuon_jobOptions.py
@@ -1,10 +1,8 @@
 from TrigMuonMonitoring.TrigMuonMonitoringConfig import TrigMuonMonitoringTool
-for toolname in TrigMuonMonitoringTool():
-    tool1 = getattr(ToolSvc, toolname.split('/')[-1])
+for tool1 in TrigMuonMonitoringTool():
     tool1.EnableLumi = False
     tool1.OutputLevel = WARNING
     #tool1.DetailLevel = 10
     
     tool1.EnableLumi = False
-    ToolSvc += tool1
     monMan.AthenaMonTools += [tool1]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigTau_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigTau_jobOptions.py
index 64e289ae25026f5ae66cf4fa8a0ae4295f0906a0..02514b0a94c56e44f527b6bcfb7f91c28ea92fec 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigTau_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValTrigTau_jobOptions.py
@@ -1,10 +1,8 @@
 from TrigTauMonitoring.TrigTauMonitoringConfig import TrigTauMonitoringTool
-for toolname in TrigTauMonitoringTool():
-    tool1 = getattr(ToolSvc, toolname.split('/')[-1])
+for tool1 in TrigTauMonitoringTool():
     tool1.EnableLumi = False
     tool1.OutputLevel = WARNING
     #tool1.DetailLevel = 10
     
     tool1.EnableLumi = False
-    ToolSvc += tool1
     monMan.AthenaMonTools += [tool1]
diff --git a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValZee_jobOptions.py b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValZee_jobOptions.py
index 7c0013f5c79d833d154a88e7f5d1bf15ec4ab0fc..3db5195f9c73f0a64b806529db3e0679bdb780c1 100644
--- a/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValZee_jobOptions.py
+++ b/PhysicsAnalysis/PhysicsValidation/PhysValMonitoring/share/PhysValZee_jobOptions.py
@@ -12,8 +12,5 @@ tool1.ElectronContainerName = "Electrons"
 tool1.ElectronContainerFrwdName = "ForwardElectrons"
 tool1.TruthParticleContainerName = "TruthParticles"
         
-from AthenaCommon.AppMgr import ToolSvc
-ToolSvc += tool1
-
 monMan = CfgMgr.AthenaMonManager("PhysValMonManager")
 monMan.AthenaMonTools += [ tool1 ]