From 6232ccd3851f673041bacd8a45decc6673bbe374 Mon Sep 17 00:00:00 2001
From: Eoin Clerkin <e.clerkin@gsi.de>
Date: Fri, 9 Feb 2024 14:09:44 +0100
Subject: [PATCH] Change Overlap check macro

Increase the number of sampling points to 2M
---
 macro/geometry/check_overlaps.C | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/macro/geometry/check_overlaps.C b/macro/geometry/check_overlaps.C
index 704a1af65c..6776735dad 100644
--- a/macro/geometry/check_overlaps.C
+++ b/macro/geometry/check_overlaps.C
@@ -1,4 +1,4 @@
-/* Copyright (C) 2010-2023 GSI Helmholtzzentrum fuer Schwerionenforschung, Darmstadt
+/* Copyright (C) 2010-2024 GSI Helmholtzzentrum fuer Schwerionenforschung, Darmstadt
    SPDX-License-Identifier: GPL-3.0-only
    Authors: Volker Friese, P.-A. Loizeau, Florian Uhlig [committer] */
 
@@ -358,7 +358,7 @@ void check_overlaps(TString dataset = "test", TString alignment_matrices = "")
   }
   std::cout << std::endl;
 
-  gGeoManager->CheckOverlaps(0.0001, "s");
+  gGeoManager->CheckOverlaps(0.0001, "s2000000");
   TIter next1(gGeoManager->GetListOfOverlaps());
   while ((ov = (TGeoOverlap*) next1())) {
 
@@ -384,7 +384,4 @@ void check_overlaps(TString dataset = "test", TString alignment_matrices = "")
     std::cout << " Test passed" << std::endl;
     std::cout << " All ok " << std::endl;
   }
-
-
-  //RemoveGeoManager();
 }
-- 
GitLab