From 1e94986fb58ec4bf8d1dfc74f599ac20bb8d9c36 Mon Sep 17 00:00:00 2001 From: Felix Schlepper Date: Fri, 1 Dec 2023 18:35:31 +0100 Subject: [PATCH] SVertexer: remove double param print Also when the final parameters are printed they now use the infologger facility, which IMO is more intutive and verbose. Signed-off-by: Felix Schlepper --- .../GlobalTrackingWorkflow/src/SecondaryVertexingSpec.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Detectors/GlobalTrackingWorkflow/src/SecondaryVertexingSpec.cxx b/Detectors/GlobalTrackingWorkflow/src/SecondaryVertexingSpec.cxx index 40cfeef36b981..93ef667d2f914 100644 --- a/Detectors/GlobalTrackingWorkflow/src/SecondaryVertexingSpec.cxx +++ b/Detectors/GlobalTrackingWorkflow/src/SecondaryVertexingSpec.cxx @@ -153,7 +153,6 @@ void SecondaryVertexingSpec::finaliseCCDB(ConcreteDataMatcher& matcher, void* ob } if (matcher == ConcreteDataMatcher("GLO", "SVPARAM", 0)) { LOG(info) << "SVertexer Params updated from ccdb"; - SVertexerParams::Instance().printKeyValues(true, true); return; } } @@ -175,7 +174,7 @@ void SecondaryVertexingSpec::updateTimeDependentParams(ProcessingContext& pc) } if (pc.services().get().inputTimesliceId == 0) { // setting and or overwriting the configurable params - SVertexerParams::Instance().printKeyValues(); + SVertexerParams::Instance().printKeyValues(true, true); } if (mEnableStrangenessTracking) { o2::its::GeometryTGeo* geom = o2::its::GeometryTGeo::Instance();