Skip to content

Commit 988ecb6

Browse files
committed
put vector to pool
1 parent fb35524 commit 988ecb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Detectors/ITSMFT/ITS/tracking/src/TrackerTraits.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ void TrackerTraits<nLayers>::processNeighbours(int iLayer, int iLevel, const bou
478478
#endif
479479

480480
mTaskArena.execute([&] {
481-
std::vector<int> perCellCount(currentCellSeed.size() + 1, 0);
481+
bounded_vector<int> perCellCount(currentCellSeed.size() + 1, 0, mMemoryPool.get());
482482
tbb::parallel_for(
483483
tbb::blocked_range<int>(0, (int)currentCellSeed.size()),
484484
[&](const tbb::blocked_range<int>& Cells) {

0 commit comments

Comments
 (0)