From 0f5eb964c667c0807378398581c35909dd057334 Mon Sep 17 00:00:00 2001
From: ralfulrich <ralf.ulrich@kit.edu>
Date: Fri, 23 Oct 2020 12:34:05 +0200
Subject: [PATCH] distinguish output files

---
 Documentation/Examples/em_shower.cc    | 10 +++-------
 Documentation/Examples/vertical_EAS.cc | 10 +++-------
 2 files changed, 6 insertions(+), 14 deletions(-)

diff --git a/Documentation/Examples/em_shower.cc b/Documentation/Examples/em_shower.cc
index e36dae164..c41d45747 100644
--- a/Documentation/Examples/em_shower.cc
+++ b/Documentation/Examples/em_shower.cc
@@ -174,11 +174,7 @@ int main(int argc, char** argv) {
   em_continuous.Reset();
 
   auto const hists = proposalCounted.GetHistogram();
-  hists.saveLab("inthist_lab.npz");
-  hists.saveCMS("inthist_cms.npz");
-
-  longprof.save("longprof.txt");
-
-  std::ofstream finish("finished");
-  finish << "run completed without error" << std::endl;
+  hists.saveLab("inthist_lab_emShower.npz");
+  hists.saveCMS("inthist_cms_emShower.npz");
+  longprof.save("longprof_emShower.txt");
 }
diff --git a/Documentation/Examples/vertical_EAS.cc b/Documentation/Examples/vertical_EAS.cc
index 7258f99d5..14eeea8b9 100644
--- a/Documentation/Examples/vertical_EAS.cc
+++ b/Documentation/Examples/vertical_EAS.cc
@@ -259,11 +259,7 @@ int main(int argc, char** argv) {
   auto const hists = sibyllCounted.GetHistogram() + sibyllNucCounted.GetHistogram() +
                      urqmdCounted.GetHistogram() + proposalCounted.GetHistogram();
 
-  hists.saveLab("inthist_lab.npz");
-  hists.saveCMS("inthist_cms.npz");
-
-  longprof.save("longprof.txt");
-
-  std::ofstream finish("finished");
-  finish << "run completed without error" << std::endl;
+  hists.saveLab("inthist_lab_verticalEAS.npz");
+  hists.saveCMS("inthist_cms_verticalEAS.npz");
+  longprof.save("longprof_verticalEAS.txt");
 }
-- 
GitLab