From: Benjamin Linnik Date: Thu, 10 Sep 2015 15:47:21 +0000 (+0200) Subject: Run analyzer: If ROOT file not existent, force analysis of run X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=1983482cc239a6513b2f04103fe593b95de181d6;p=radhard.git Run analyzer: If ROOT file not existent, force analysis of run --- 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)