From f9407ef9757219cd9cd94e1bcb644ed84938eacb Mon Sep 17 00:00:00 2001 From: Andreas Suter Date: Tue, 26 May 2020 16:06:46 +0200 Subject: [PATCH] fixed double newline with alpha and beta, accidentally introduced. --- src/classes/PMsrHandler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/classes/PMsrHandler.cpp b/src/classes/PMsrHandler.cpp index be6ff05c..acb4bf82 100644 --- a/src/classes/PMsrHandler.cpp +++ b/src/classes/PMsrHandler.cpp @@ -823,7 +823,7 @@ Int_t PMsrHandler::WriteMsrLogFile(const Bool_t messages) if (fRuns[runNo].GetAlphaParamNo() >= MSR_PARAM_FUN_OFFSET) fout << "fun" << fRuns[runNo].GetAlphaParamNo()-MSR_PARAM_FUN_OFFSET; else - fout << fRuns[runNo].GetAlphaParamNo() << std::endl; + fout << fRuns[runNo].GetAlphaParamNo(); fout << std::endl; } else if (sstr.BeginsWith("beta ")) { fout.width(16); @@ -831,7 +831,7 @@ Int_t PMsrHandler::WriteMsrLogFile(const Bool_t messages) if (fRuns[runNo].GetBetaParamNo() >= MSR_PARAM_FUN_OFFSET) fout << "fun" << fRuns[runNo].GetBetaParamNo()-MSR_PARAM_FUN_OFFSET; else - fout << fRuns[runNo].GetBetaParamNo() << std::endl; + fout << fRuns[runNo].GetBetaParamNo(); fout << std::endl; } else if (sstr.BeginsWith("norm")) { fout.width(16);