Skip to content

Commit

Permalink
minor reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwand committed Mar 18, 2024
1 parent b046088 commit 80d3664
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -453,8 +453,6 @@ ProcessCode VertexPerformanceWriter::writeT(

// Get references to inner vectors where all track variables corresponding
// to the current vertex will be saved
auto& innerTrkParticleId = m_trkParticleId.emplace_back();

auto& innerTrkWeight = m_trkWeight.emplace_back();

auto& innerRecoPhi = m_recoPhi.emplace_back();
Expand All @@ -465,6 +463,8 @@ ProcessCode VertexPerformanceWriter::writeT(
auto& innerRecoThetaFitted = m_recoThetaFitted.emplace_back();
auto& innerRecoQOverPFitted = m_recoQOverPFitted.emplace_back();

auto& innerTrkParticleId = m_trkParticleId.emplace_back();

auto& innerTruthPhi = m_truthPhi.emplace_back();
auto& innerTruthTheta = m_truthTheta.emplace_back();
auto& innerTruthQOverP = m_truthQOverP.emplace_back();
Expand Down Expand Up @@ -774,14 +774,14 @@ ProcessCode VertexPerformanceWriter::writeT(
m_pullZ.clear();
m_pullT.clear();
m_sumPt2.clear();
m_trkParticleId.clear();
m_trkWeight.clear();
m_recoPhi.clear();
m_recoTheta.clear();
m_recoQOverP.clear();
m_recoPhiFitted.clear();
m_recoThetaFitted.clear();
m_recoQOverPFitted.clear();
m_trkParticleId.clear();
m_truthPhi.clear();
m_truthTheta.clear();
m_truthQOverP.clear();
Expand Down

0 comments on commit 80d3664

Please sign in to comment.