From 38f91eeaffa0685d811345758fd22958c8474d64 Mon Sep 17 00:00:00 2001 From: "se.gorbunov" <se.gorbunov@gsi.de> Date: Wed, 24 Apr 2024 07:42:35 +0000 Subject: [PATCH] log an error when TOF tracking stations are not set --- core/detectors/tof/CbmTofDigiBdfPar.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/detectors/tof/CbmTofDigiBdfPar.cxx b/core/detectors/tof/CbmTofDigiBdfPar.cxx index ac73276eea..1f40588784 100644 --- a/core/detectors/tof/CbmTofDigiBdfPar.cxx +++ b/core/detectors/tof/CbmTofDigiBdfPar.cxx @@ -232,9 +232,9 @@ Bool_t CbmTofDigiBdfPar::getParams(FairParamList* l) for (Int_t iSmType = 0; iSmType < fiNbSmTypes; iSmType++) { fiTrkStation[iSmType].Set(fiNbSm[iSmType] * fiNbRpc[iSmType]); if (!l->fill(Form("TrkStation%03d", iSmType), &(fiTrkStation[iSmType]))) { - LOG(info) << "CbmTofDigiBdfPar::getParams => parameter " << Form("TrkStation%03d", iSmType) - << " not found in the text file. " - << "Initialized to 0 "; + LOG(error) << "CbmTofDigiBdfPar::getParams => parameter " << Form("TrkStation%03d", iSmType) + << " not found in the text file. " + << "Initialized to 0 "; for (Int_t iRpc = 0; iRpc < fiNbSm[iSmType] * fiNbRpc[iSmType]; iRpc++) fiTrkStation[iSmType].SetAt(0, iRpc); //return kFALSE; -- GitLab