From 88199c84b0fd6df2b540a5c149a928e28826b57b Mon Sep 17 00:00:00 2001
From: Markus Frank <Markus.Frank@cern.ch>
Date: Fri, 5 Jul 2024 11:26:59 +0200
Subject: [PATCH] Fix BoxOfStraws: Now layers with correct orientation. Thanks
 Andre!

---
 examples/ClientTests/scripts/BoxOfStraws.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/examples/ClientTests/scripts/BoxOfStraws.py b/examples/ClientTests/scripts/BoxOfStraws.py
index 4d5db5951..d161c466f 100644
--- a/examples/ClientTests/scripts/BoxOfStraws.py
+++ b/examples/ClientTests/scripts/BoxOfStraws.py
@@ -89,12 +89,12 @@ def run():
   # Map sensitive detectors of type 'BoxOfStraws' to Geant4CalorimeterAction
   sd = geant4.description.sensitiveDetector(str('BoxOfStrawsDet'))
   logger.info(f'+++ BoxOfStraws: SD type: {str(sd.type())}')
-  filter = DDG4.Filter(kernel, 'EnergyDepositMinimumCut')
-  filter.Cut = 1.0 * MeV
-  filter.enableUI()
-  kernel.registerGlobalFilter(filter)
+  energy_filter = DDG4.Filter(kernel, 'EnergyDepositMinimumCut')
+  energy_filter.Cut = 1.0 * MeV
+  energy_filter.enableUI()
+  kernel.registerGlobalFilter(energy_filter)
   seq, act = geant4.setupDetector(name='BoxOfStrawsDet', action='MyTrackerSDAction')
-  seq.adopt(filter)
+  seq.adopt(energy_filter)
   act.HaveCellID = False
   #
   # Now build the physics list:
-- 
GitLab