Skip to content

Commit 5ad5bf2

Browse files
committed
fix typo in cascades sorting/merging
1 parent f8f45a2 commit 5ad5bf2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Detectors/Vertexing/src/SVertexer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ void SVertexer::process(const o2::globaltracking::RecoContainer& recoData) // ac
8585
v0SortID.emplace_back(vid{i, j, mV0sTmp[i][j].getVertexID()});
8686
}
8787
for (int j = 0; j < (int)mCascadesTmp[i].size(); j++) {
88-
cascSortID.emplace_back(vid{i, j, mV0sTmp[i][j].getVertexID()});
88+
cascSortID.emplace_back(vid{i, j, mCascadesTmp[i][j].getVertexID()});
8989
}
9090
}
9191
std::sort(v0SortID.begin(), v0SortID.end(), [](const vid& a, const vid& b) { return a.vtxID > b.vtxID; });

0 commit comments

Comments
 (0)