From ca4325fa89c1d7148f9ace7859a653d56e959b85 Mon Sep 17 00:00:00 2001 From: aferrero2707 Date: Wed, 7 May 2025 09:19:33 +0200 Subject: [PATCH] [Common] fix typo in BigScreen parameters fetching --- Modules/Common/src/BigScreen.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Common/src/BigScreen.cxx b/Modules/Common/src/BigScreen.cxx index 9525ba84dd..2dbf7210fc 100644 --- a/Modules/Common/src/BigScreen.cxx +++ b/Modules/Common/src/BigScreen.cxx @@ -62,7 +62,7 @@ void BigScreen::initialize(quality_control::postprocessing::Trigger t, framework int backgroundColor = getFromExtendedConfig(t.activity, mCustomParameters, "backgroundColor", 0); mMaxObjectTimeShift = getFromExtendedConfig(t.activity, mCustomParameters, "maxObjectTimeShift", mMaxObjectTimeShift); - mIgnoreActivity = getFromExtendedConfig(t.activity, mCustomParameters, "maxObjectTimeShift", mIgnoreActivity); + mIgnoreActivity = getFromExtendedConfig(t.activity, mCustomParameters, "ignoreActivity", mIgnoreActivity); auto labels = o2::utils::Str::tokenize(getFromExtendedConfig(t.activity, mCustomParameters, "labels"), ',', false, false); if (labels.size() > (nRows * nCols)) {