Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions k4MarlinWrapper/src/components/EDM4hep2Lcio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ StatusCode EDM4hep2LcioTool::convertCollections(lcio::LCEventImpl* lcio_event) {
edmEvent = m_podioDataSvc->getEventFrame();
for (const auto& name : edmEvent.value().get().getAvailableCollections()) {
const auto& [_, inserted] = collNameMapping.emplace(name, name);
debug() << fmt::format("Adding '{}' from Frame to conversion? {}", name, inserted);
debug() << fmt::format("Adding '{}' from Frame to conversion? {}", name, inserted) << endmsg;
}
}
// Always check the contents of the TES because algorithms that do not use
Expand All @@ -420,7 +420,7 @@ StatusCode EDM4hep2LcioTool::convertCollections(lcio::LCEventImpl* lcio_event) {
std::optional<std::map<uint32_t, std::string>> idToNameOpt(std::move(m_idToName));
for (const auto& name : getAvailableCollectionsFromStore(this, idToNameOpt)) {
const auto& [_, inserted] = collNameMapping.emplace(name, name);
debug() << fmt::format("Adding '{}' from TES to conversion? {}", name, inserted);
debug() << fmt::format("Adding '{}' from TES to conversion? {}", name, inserted) << endmsg;
}
m_idToName = std::move(idToNameOpt.value());

Expand Down