From 39e9e33cc74b769b67a184091939d01649726c64 Mon Sep 17 00:00:00 2001 From: sbosse Date: Tue, 27 Jan 2026 00:29:27 +0100 Subject: [PATCH] Tue 27 Jan 00:26:46 CET 2026 --- src/SimNDT/run_setup/runSimulator.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/SimNDT/run_setup/runSimulator.py b/src/SimNDT/run_setup/runSimulator.py index 0af799f..5b69fc2 100644 --- a/src/SimNDT/run_setup/runSimulator.py +++ b/src/SimNDT/run_setup/runSimulator.py @@ -716,6 +716,10 @@ def read_export(sim_params): enableView = sim_params["Export"]["enableView"] else: enableView = False + if "enableSummary" in sim_params["Export"].keys(): + enableSummary = sim_params["Export"]["enableSummary"] + else: + enableSummary = False if "sensorShape" in sim_params["Export"].keys(): sensorShape = sim_params["Export"]["sensorShape"] else: @@ -748,6 +752,7 @@ def read_export(sim_params): enableMaterial=enableMaterial, enableVolume=enableVolume, enableView=enableView, + enableSummary=enableSummary, sensorShape=sensorShape, sensorPlacement=sensorPlacement, sensorSize=sensorSize