From fa0016faf207b01f038e1930859b5cd450fd8d2c Mon Sep 17 00:00:00 2001
From: Maximilian Reininghaus <maximilian.reininghaus@tu-dortmund.de>
Date: Fri, 20 Sep 2024 10:24:15 +0200
Subject: [PATCH] fix y-label in longitudinal profile

---
 python/examples/shower_profile.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/examples/shower_profile.py b/python/examples/shower_profile.py
index 76f2db866..311b181f6 100644
--- a/python/examples/shower_profile.py
+++ b/python/examples/shower_profile.py
@@ -72,7 +72,7 @@ def draw_profiles(pr, pr_config):
     ax.set_title(pr_config["type"] + "\n" + title)
     unit_grammage_str = pr_config["units"]["grammage"]  # get units of simulation output
     ax.set_xlabel(f"slant depth, X ({unit_grammage_str})")
-    ax.set_ylabel("dN/dX")
+    ax.set_ylabel("N(X)")
     ax.legend()
     ax.set_yscale("log")
     ax.set_xlim(min(pr["X"]), max(pr["X"]))
-- 
GitLab