Skip to content

Commit

Permalink
Revert "review stephenswat"
Browse files Browse the repository at this point in the history
This reverts commit 449bd3e.
  • Loading branch information
AJPfleger committed Oct 18, 2024
1 parent 449bd3e commit 0e95c93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Core/src/Material/BinnedSurfaceMaterialAccumulater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ void Acts::BinnedSurfaceMaterialAccumulater::accumulate(

// After mapping this track, average the touched bins
for (const auto& [key, value] : touchedMapBins) {
key->trackAverage({value}, true);
std::vector<std::array<std::size_t, 3>> trackBins = {value};
key->trackAverage(trackBins, true);
}

// Empty bin correction
Expand Down

0 comments on commit 0e95c93

Please sign in to comment.