From 669c48af1b0afe7753b60bf501d9cb1323e55a8f Mon Sep 17 00:00:00 2001
From: Alan Coleman <alanc@udel.edu>
Date: Wed, 6 Mar 2024 20:54:29 +0100
Subject: [PATCH] Update output name

---
 python/examples/shower_profile.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/python/examples/shower_profile.py b/python/examples/shower_profile.py
index 3f4b1e6a7..93e200949 100644
--- a/python/examples/shower_profile.py
+++ b/python/examples/shower_profile.py
@@ -75,7 +75,7 @@ def draw_profiles(pr, pr_config):
     ax.set_yscale("log")
     ax.set_xlim(min(pr["X"]), max(pr["X"]))
 
-    plot_path = os.path.join(args.output_dir, "show_profile_profiles.png")
+    plot_path = os.path.join(args.output_dir, "shower_profile_long_profiles.png")
     print("Saving", plot_path)
     fig.savefig(plot_path)
 
@@ -91,7 +91,7 @@ def draw_energyloss(prdx, prdx_config):
     ax.set_ylabel(f"dE/dX ({unit_energy_str} / ({unit_grammage_str}))")
     ax.set_xlim(min(prdx["X"]), max(prdx["X"]))
 
-    plot_path = os.path.join(args.output_dir, "show_profile_energyloss.png")
+    plot_path = os.path.join(args.output_dir, "shower_profile_energy_loss.png")
     print("Saving", plot_path)
     fig.savefig(plot_path)
 
-- 
GitLab