From ec9612ec2441f114d110ec66aaff620cc96a7abd Mon Sep 17 00:00:00 2001 From: Giulio Eulisse <10544+ktf@users.noreply.github.com> Date: Tue, 15 Sep 2026 04:30:08 +0200 Subject: [PATCH] Fix warning --- Modules/TPC/src/GenericHistogramCheck.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/TPC/src/GenericHistogramCheck.cxx b/Modules/TPC/src/GenericHistogramCheck.cxx index 702e988162..2ffcd9fd9b 100644 --- a/Modules/TPC/src/GenericHistogramCheck.cxx +++ b/Modules/TPC/src/GenericHistogramCheck.cxx @@ -149,8 +149,8 @@ Quality GenericHistogramCheck::check(std::mapGetStdDev(1); } else if (mHistDimension == 1) { ILOG(Error, Support) << "a 1D Histogram was given, but the X-axis is not assigned to be checked. No Check was performed." << ENDM; - mMeanX = 999999999; // set it to some number so that the math does not break - mStdevX = 999999999; + mMeanX = 1e9f; // set it to some number so that the math does not break + mStdevX = 1e9f; } if (mHistDimension == 2) { if (mCheckYAxis) {