From 29aacf1a878c76eef58d96d0e49683460753abd0 Mon Sep 17 00:00:00 2001 From: tmadlener Date: Wed, 2 Oct 2024 10:34:55 +0200 Subject: [PATCH] Rename variables to match types better --- RecCalorimeter/src/components/CreateTruthJet.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/RecCalorimeter/src/components/CreateTruthJet.cpp b/RecCalorimeter/src/components/CreateTruthJet.cpp index c39e407..913614a 100644 --- a/RecCalorimeter/src/components/CreateTruthJet.cpp +++ b/RecCalorimeter/src/components/CreateTruthJet.cpp @@ -79,7 +79,7 @@ struct CreateTruthJet final m_clusterer->cluster(clustersPJ); auto edmJets = edm4hep::ReconstructedParticleCollection(); - auto assoc = edm4hep::RecoMCParticleLinkCollection(); + auto links = edm4hep::RecoMCParticleLinkCollection(); for (auto cjet : inclusiveJets) { edm4hep::MutableReconstructedParticle jet; @@ -92,15 +92,15 @@ struct CreateTruthJet final for (auto constit : constits) { int index = constit.user_info().index(); - auto association = assoc.create(); - association.setFrom(jet); - association.setTo((input)[index]); + auto link = links.create(); + link.setFrom(jet); + link.setTo((input)[index]); } edmJets.push_back(jet); } - return std::make_tuple(std::move(edmJets), std::move(assoc)); + return std::make_tuple(std::move(edmJets), std::move(links)); } StatusCode finalize() override {