From ecb479d1af24fa4c0f87472b3e70f41d0b396d00 Mon Sep 17 00:00:00 2001
From: Tamas Gal <tgal@km3net.de>
Date: Wed, 6 Mar 2019 11:35:21 +0100
Subject: [PATCH] Change yaxis to log

---
 scripts/online_reco.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/online_reco.py b/scripts/online_reco.py
index 32afed3..1b1d89e 100644
--- a/scripts/online_reco.py
+++ b/scripts/online_reco.py
@@ -64,6 +64,7 @@ class ZenithDistribution(kp.Module):
         ax.set_xlabel(r"cos(zenith)", fontsize=fontsize)
         ax.set_ylabel("count", fontsize=fontsize)
         ax.tick_params(labelsize=fontsize)
+        ax.set_yscale("log")
         filename = os.path.join(self.plots_path, 'track_reco.png')
         plt.savefig(filename, dpi=120, bbox_inches="tight")
         plt.close('all')
-- 
GitLab