From b2998812598af199c615e92bb5d6f0c353cfdb70 Mon Sep 17 00:00:00 2001
From: Katherine Pachal <katepachal@gmail.com>
Date: Mon, 24 Sep 2018 12:58:32 +0000
Subject: [PATCH] Merge branch '21.1-dev-tida-obj' into '21.1-dev'

Fix bug whereby a histogram plotted twice would be modifed twice

See merge request atlas/athena!14450

(cherry picked from commit 4af1d5c21fc2f1e4e9cff9ed18f2c004e22c2913 [formerly 1448b8cdc8231ca3d6a7daff77dc12c1a4edb4e2])

a4e1eb52 Fix bug whereby a histogram plotted twice would be modifed twice

Former-commit-id: 590c0ff23c82051d4f8d62120f20fadc0cd47716
---
 .../TrigInDetAnalysisUser/Analysis/src/comparitor.cxx          | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Trigger/TrigAnalysis/TrigInDetAnalysisUser/Analysis/src/comparitor.cxx b/Trigger/TrigAnalysis/TrigInDetAnalysisUser/Analysis/src/comparitor.cxx
index a4d2e83d79b..a9221fa7bdd 100644
--- a/Trigger/TrigAnalysis/TrigInDetAnalysisUser/Analysis/src/comparitor.cxx
+++ b/Trigger/TrigAnalysis/TrigInDetAnalysisUser/Analysis/src/comparitor.cxx
@@ -59,7 +59,6 @@ bool fulldbg = false;
 template<typename T=TH1F>
 T* Get( TFile& f, const std::string& n, const std::string& dir="", std::vector<std::string>* saved=0  ) { 
 
-
   std::string name;
 
   size_t pos = n.find("+");
@@ -80,6 +79,8 @@ T* Get( TFile& f, const std::string& n, const std::string& dir="", std::vector<s
     }
   }
 
+  if ( h ) h->SetDirectory(0);
+
   return h;
 }
 
-- 
GitLab