Skip to content

Commit

Permalink
SVertexer: remove double param print
Browse files Browse the repository at this point in the history
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 <felix.schlepper@cern.ch>
  • Loading branch information
Felix Schlepper committed Dec 1, 2023
1 parent c8ae254 commit 1e94986
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand All @@ -175,7 +174,7 @@ void SecondaryVertexingSpec::updateTimeDependentParams(ProcessingContext& pc)
}
if (pc.services().get<const o2::framework::DeviceSpec>().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();
Expand Down

0 comments on commit 1e94986

Please sign in to comment.