From 54eccb09ed601312990ec251e2e4f92dbb6584b2 Mon Sep 17 00:00:00 2001 From: tmadlener Date: Fri, 17 May 2024 14:42:41 +0200 Subject: [PATCH] Fix typo in type name --- utils/src/ParticleIDUtils.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utils/src/ParticleIDUtils.cc b/utils/src/ParticleIDUtils.cc index 64b741e60..154b6b61d 100644 --- a/utils/src/ParticleIDUtils.cc +++ b/utils/src/ParticleIDUtils.cc @@ -163,10 +163,10 @@ std::optional PIDHandler::getAlgoInfo(const podi return std::nullopt; } - ParticlIDMeta pidInfo{algoName, - metadata.getParameter(podio::collMetadataParamName(collName, edm4hep::pidAlgoType)), - metadata.getParameter>( - podio::collMetadataParamName(collName, edm4hep::pidParameterNames))}; + ParticleIDMeta pidInfo{algoName, + metadata.getParameter(podio::collMetadataParamName(collName, edm4hep::pidAlgoType)), + metadata.getParameter>( + podio::collMetadataParamName(collName, edm4hep::pidParameterNames))}; #endif return pidInfo;