From b70d8384f57d4d557842b626af6d2fd9b669dfd1 Mon Sep 17 00:00:00 2001 From: Markus Frank <Markus.Frank@cern.ch> Date: Mon, 21 Mar 2022 14:22:23 +0100 Subject: [PATCH] Fix build warnings from python --- examples/OpticalSurfaces/scripts/ReadMaterialProperties.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/examples/OpticalSurfaces/scripts/ReadMaterialProperties.py b/examples/OpticalSurfaces/scripts/ReadMaterialProperties.py index 5b4cd3df3..2df6ad37b 100644 --- a/examples/OpticalSurfaces/scripts/ReadMaterialProperties.py +++ b/examples/OpticalSurfaces/scripts/ReadMaterialProperties.py @@ -54,9 +54,8 @@ def run(): # Configure G4 geometry setup seq, act = geant4.addDetectorConstruction("Geant4DetectorGeometryConstruction/ConstructGeo") act.DebugMaterials = True - act.DebugVolumes = True - act.DebugShapes = True - + act.DebugVolumes = True + act.DebugShapes = True # Setup particle gun gun = geant4.setupGun("Gun", particle='gamma', energy=5 * keV, multiplicity=1) -- GitLab