Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unused vector for unsorted clusters
  • Loading branch information
fcatalan92 authored and mpuccio committed Nov 25, 2020
commit c86c542dd8b79fb58b6637b14c10292f57127ec1
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ class PrimaryVertexContext
float3 mPrimaryVertex;
std::vector<float> mMinR;
std::vector<float> mMaxR;
std::vector<std::vector<Cluster>> mUnsortedClusters;
std::vector<std::vector<Cluster>> mClusters;
std::vector<std::vector<bool>> mUsedClusters;
std::vector<std::vector<Cell>> mCells;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ void PrimaryVertexContext::initialise(const MemoryParameters& memParam, const Tr

mMinR.resize(trkParam.NLayers, 10000.);
mMaxR.resize(trkParam.NLayers, -1.);
mUnsortedClusters.resize(trkParam.NLayers);
mClusters.resize(trkParam.NLayers);
mUsedClusters.resize(trkParam.NLayers);
mCells.resize(trkParam.CellsPerRoad());
Expand Down