@@ -93,7 +93,6 @@ class VertexerTraits
9393 GPUhd () static const int2 getPhiBins (float phi, float deltaPhi, const IndexTableUtils&);
9494
9595 // virtual vertexer interface
96- // virtual void reset();
9796 virtual void initialise (const MemoryParameters& memParams, const TrackingParameters& trackingParams);
9897 virtual void computeTracklets ();
9998 virtual void computeTrackletMatching ();
@@ -127,25 +126,14 @@ class VertexerTraits
127126
128127 protected:
129128 unsigned char mIsGPU ;
130-
131- // std::vector<Line> mTracklets;
132- // std::vector<Tracklet> mComb01;
133- // std::vector<Tracklet> mComb12;
134- // std::vector<int> mFoundTracklets01;
135- // std::vector<int> mFoundTracklets12;
136- // std::array<std::vector<Cluster>, constants::its::LayersNumberVertexer> mClusters;
137-
138129 unsigned int mDBGFlags = 0 ;
139130
140131 VertexingParameters mVrtParams ;
141132 IndexTableUtils mIndexTableUtils ;
142- // std::array<std::vector<int>, LayersNumberVertexer> mIndexTables;
143133 std::vector<lightVertex> mVertices ;
144134
145135 // Frame related quantities
146- // std::array<std::vector<unsigned char>, 2> mUsedClusters;
147136 TimeFrame* mTimeFrame = nullptr ;
148- // std::vector<ClusterLines> mTrackletClusters;
149137};
150138
151139inline void VertexerTraits::initialise (const MemoryParameters& memParams, const TrackingParameters& trackingParams)
@@ -164,9 +152,6 @@ inline void VertexerTraits::updateVertexingParameters(const VertexingParameters&
164152 mVrtParams .phiSpan = static_cast <int >(std::ceil (mIndexTableUtils .getNphiBins () * mVrtParams .phiCut /
165153 constants::math::TwoPi));
166154 mVrtParams .zSpan = static_cast <int >(std::ceil (mVrtParams .zCut * mIndexTableUtils .getInverseZCoordinate (0 )));
167- // for (auto& table : mIndexTables) {
168- // table.resize(mIndexTableUtils.getNphiBins() * mIndexTableUtils.getNzBins() + 1, 0);
169- // }
170155}
171156
172157GPUhdi () const int2 VertexerTraits::getPhiBins (float phi, float dPhi)
0 commit comments