Skip to content

Commit

Permalink
Fix typo in type name
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed May 17, 2024
1 parent 84c73be commit c392d7d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions utils/src/ParticleIDUtils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,10 @@ std::optional<edm4hep::utils::ParticleIDMeta> PIDHandler::getAlgoInfo(const podi
return std::nullopt;
}

ParticlIDMeta pidInfo{algoName,
metadata.getParameter<int>(podio::collMetadataParamName(collName, edm4hep::pidAlgoType)),
metadata.getParameter<std::vector<std::string>>(
podio::collMetadataParamName(collName, edm4hep::pidParameterNames))};
ParticleIDMeta pidInfo{algoName,
metadata.getParameter<int>(podio::collMetadataParamName(collName, edm4hep::pidAlgoType)),
metadata.getParameter<std::vector<std::string>>(
podio::collMetadataParamName(collName, edm4hep::pidParameterNames))};
#endif

return pidInfo;
Expand Down

0 comments on commit c392d7d

Please sign in to comment.