From 57b07347cf65a552f64a1b4fde1a7fd38698b093 Mon Sep 17 00:00:00 2001 From: Jan Kieseler Date: Tue, 19 Sep 2023 09:36:23 +0000 Subject: [PATCH] fix --- bind/G4Calo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bind/G4Calo.py b/bind/G4Calo.py index de03e66..ca9cce3 100644 --- a/bind/G4Calo.py +++ b/bind/G4Calo.py @@ -9,7 +9,7 @@ from IPython.display import Image, display class G4System(_G4System): - def run_visualize(self,particleSpec : str, minEnergy: float, maxEnergy:float = -1.): + def run_visualize(self,particleSpec : str, minEnergy_GeV: float, maxEnergy_GeV:float = -1.): if maxEnergy < 0: maxEnergy = minEnergy _G4System.run_visualize(self, particleSpec, minEnergy_GeV, maxEnergy_GeV)