From 1983482cc239a6513b2f04103fe593b95de181d6 Mon Sep 17 00:00:00 2001 From: Benjamin Linnik Date: Thu, 10 Sep 2015 17:47:21 +0200 Subject: [PATCH] Run analyzer: If ROOT file not existent, force analysis of run --- MABS_run_analyzer/Run.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MABS_run_analyzer/Run.c b/MABS_run_analyzer/Run.c index 986a9bf..d316bf9 100644 --- a/MABS_run_analyzer/Run.c +++ b/MABS_run_analyzer/Run.c @@ -476,7 +476,7 @@ Bool_t Run::analyzeFrame(Int_t frame) Bool_t Run::runAllreadyAnalyzed() { - return checkFileExists(storepathRAWLinux + "/rootfilecreated"); + return (checkFileExists(storepathRAWLinux + "/rootfilecreated") && checkFileExists(storepathOutLinux + Form("/RUN_%i_i.root",labbook.runnumber))); } Bool_t Run::checkFileExists(TString file) -- 2.43.0