From f6f3f7fc59fcec334aff7ee215c23287c11c54db Mon Sep 17 00:00:00 2001
From: Andre Sailer <andre.philippe.sailer@cern.ch>
Date: Fri, 21 Apr 2023 11:15:20 +0200
Subject: [PATCH] Geant4DetectorConstruction: forward debugLimts,
 printPlacements, printSensitives to Converter code from plugin

---
 DDG4/plugins/Geant4DetectorGeometryConstruction.cpp |  3 +++
 DDG4/python/DDSim/Helper/Geometry.py                | 11 ++++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/DDG4/plugins/Geant4DetectorGeometryConstruction.cpp b/DDG4/plugins/Geant4DetectorGeometryConstruction.cpp
index 749a8e20d..e4f870f54 100644
--- a/DDG4/plugins/Geant4DetectorGeometryConstruction.cpp
+++ b/DDG4/plugins/Geant4DetectorGeometryConstruction.cpp
@@ -172,6 +172,9 @@ void Geant4DetectorGeometryConstruction::constructGeo(Geant4DetectorConstruction
   conv.debugSurfaces    = m_debugSurfaces;
   conv.debugPlacements  = m_debugPlacements;
   conv.debugReflections = m_debugReflections;
+  conv.debugLimits      = m_debugLimits;
+  conv.printPlacements  = m_printPlacements;
+  conv.printSensitives  = m_printSensitives;
 
   ctxt->geometry = conv.create(world).detach();
   ctxt->geometry->printLevel = outputLevel();
diff --git a/DDG4/python/DDSim/Helper/Geometry.py b/DDG4/python/DDSim/Helper/Geometry.py
index 127437c48..0ec99aa07 100644
--- a/DDG4/python/DDSim/Helper/Geometry.py
+++ b/DDG4/python/DDSim/Helper/Geometry.py
@@ -30,9 +30,10 @@ class Geometry(ConfigHelper):
     self._dumpHierachy_EXTRA = {"help": "If larger than 0, the depth up to which detector hierarchy is dumped"}
     self.dumpHierarchy = 0
 
-    # unused
-    self.printPlacements = False
-    self.printSensitives = False
+    self._enablePrintPlacements_EXTRA = {"help": "Print information about placements"}
+    self.enablePrintPlacements = False
+    self._enablePrintSensitives_EXTRA = {"help": "Print information about Sensitives"}
+    self.enablePrintSensitives = False
 
     self._dumpDGDML_EXTRA = {"help": "If not empty, filename to dump the Geometry as GDML"}
     self.dumpGDML = ""
@@ -50,8 +51,8 @@ class Geometry(ConfigHelper):
     act.DebugReflections = self.enableDebugReflections
     act.DebugRegions = self.enableDebugRegions
     act.DebugSurfaces = self.enableDebugSurfaces
-    act.PrintPlacements = self.printPlacements
-    act.PrintSensitives = self.printSensitives
+    act.PrintPlacements = self.enablePrintPlacements
+    act.PrintSensitives = self.enablePrintSensitives
     act.GeoInfoPrintLevel = geoPrintLevel
     act.DumpHierarchy = self.dumpHierarchy
     act.DumpGDML = self.dumpGDML
-- 
GitLab