From e95a62a71c599cd2ab12db024b208a315dbad125 Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin <dmitry.kalinkin@gmail.com> Date: Sat, 4 Jan 2025 10:55:07 -0500 Subject: [PATCH] DD4hepSimulation: pass self to the steeringFile eval --- DDG4/python/DDSim/DD4hepSimulation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DDG4/python/DDSim/DD4hepSimulation.py b/DDG4/python/DDSim/DD4hepSimulation.py index 28cd3e421..cb526d4e5 100644 --- a/DDG4/python/DDSim/DD4hepSimulation.py +++ b/DDG4/python/DDSim/DD4hepSimulation.py @@ -114,7 +114,7 @@ class DD4hepSimulation(object): DD4hepSimulation object present in the steering file. """ globs = {} - locs = {} + locs = {"SIM": self} if not self.steeringFile: return sFileTemp = self.steeringFile -- GitLab