From 549537982cb2191c29d0ddacabaa6c241cf723cc Mon Sep 17 00:00:00 2001 From: shahoian Date: Tue, 12 Nov 2024 15:18:22 +0100 Subject: [PATCH] Fix acknowledgment of -h option by HBFUtilsInitializer --- Detectors/Raw/src/HBFUtilsInitializer.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Detectors/Raw/src/HBFUtilsInitializer.cxx b/Detectors/Raw/src/HBFUtilsInitializer.cxx index 1f89d9725b397..e3cc9a8eef414 100644 --- a/Detectors/Raw/src/HBFUtilsInitializer.cxx +++ b/Detectors/Raw/src/HBFUtilsInitializer.cxx @@ -78,7 +78,7 @@ HBFUtilsInitializer::HBFUtilsInitializer(const o2f::ConfigContext& configcontext hbfuInput = optStr; } else if (opt == HBFOpt::ROOT) { rootFileInput = optStr; - } else { + } else if (!helpasked) { LOGP(fatal, "uknown hbfutils-config option {}", optStr); } }