diff --git a/Trigger/TrigAlgorithms/TrigMuonEF/python/TrigMuonEFConfig.py b/Trigger/TrigAlgorithms/TrigMuonEF/python/TrigMuonEFConfig.py
index 3c518c809684d18b3052c922dfccf507de3458d3..754af7189082f0c60a3c0b99d6e13f398dfa39c6 100755
--- a/Trigger/TrigAlgorithms/TrigMuonEF/python/TrigMuonEFConfig.py
+++ b/Trigger/TrigAlgorithms/TrigMuonEF/python/TrigMuonEFConfig.py
@@ -563,7 +563,7 @@ class TrigMuonEFTrackIsolationVarConfig (TrigMuonEFTrackIsolation):
         # Which isolation to run?
         if "FTK" in name:
             self.IsoType=2
-            self.removeSelfType=1
+            TMEF_VarIsolationTool.removeSelfType=1 # use LeadTrk by default
         else:
             self.IsoType=1
         # Options: 1=ID+EF, 2=FTK+L2
diff --git a/Trigger/TrigAlgorithms/TrigMuonEF/python/TrigMuonEFMonitoring.py b/Trigger/TrigAlgorithms/TrigMuonEF/python/TrigMuonEFMonitoring.py
index 2922a2f300c08713f7c0ca35f47fe239cd96eff5..fb4d0fdec5a14bad1554257af0d7f44047202a2c 100644
--- a/Trigger/TrigAlgorithms/TrigMuonEF/python/TrigMuonEFMonitoring.py
+++ b/Trigger/TrigAlgorithms/TrigMuonEF/python/TrigMuonEFMonitoring.py
@@ -336,16 +336,15 @@ class TrigMuonEFTrackIsolationOnlineMonitoring(TrigGenericMonitoringToolConfig):
     def __init__ (self, name="TrigMuonEFTrackIsolationOnlineMonitoring"):
         super(TrigMuonEFTrackIsolationOnlineMonitoring, self).__init__(name)
         self.defineTarget("Online")
-        self.Histograms += [ defineHistogram('EF_trks_trkptiso_cone2', type='TH1F', title="Track Isolation cone 0.2; MuonEF CB Trk Isolation cone 0.2 [GeV]",
-                                             xbins=25, xmin=0, xmax=25) ]
-        self.Histograms += [ defineHistogram('EF_trks_trkptiso_cone3', type='TH1F', title="Track Isolation cone 0.3; MuonEF CB Trk Isolation cone 0.3 [GeV]",
-                                             xbins=25, xmin=0, xmax=25) ]
-        self.Histograms += [ defineHistogram('EF_trks_idtrkdz', type='TH1F', title="dz to ID trks; dz to ID trks",
-                                             xbins=200, xmin=-100, xmax=100.0) ]
-        self.Histograms += [ defineHistogram('EF_trks_idtrkdr', type='TH1F', title="dr to ID trks; dr to ID trks",
+        self.Histograms += [ defineHistogram('trks_trkptiso_cone2', type='TH1F', title="Track Isolation cone 0.2; MuonEF CB Trk Isolation cone 0.2 [GeV] (ID)",
+                                             xbins=35, xmin=-10, xmax=25) ]
+        self.Histograms += [ defineHistogram('trks_trkptiso_cone3', type='TH1F', title="Track Isolation cone 0.3; MuonEF CB Trk Isolation cone 0.3 [GeV] (ID)",
+                                             xbins=35, xmin=-10, xmax=25) ]
+        self.Histograms += [ defineHistogram('trks_trkdz', type='TH1F', title="dz to trks; dz to trks",
+                                             xbins=200, xmin=-10, xmax=10.0) ]
+        self.Histograms += [ defineHistogram('trks_trkdr', type='TH1F', title="dr to trks; dr to trks",
                                              xbins=60, xmin=0.0, xmax=3.0) ]
 
-
 class TrigMuonEFTrackIsolationValidationMonitoring(TrigGenericMonitoringToolConfig):
     def __init__ (self, name="TrigMuonEFTrackIsolationValidationMonitoring"):
         super(TrigMuonEFTrackIsolationValidationMonitoring, self).__init__(name)