Skip to content
Open
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -192,12 +192,11 @@ class TrackITSExt : public TrackITS
getClusterRefs().setEntries(ncl);
}

GPUhdi() const int getClusterIndex(int lr) const { return mIndex[lr]; }
GPUhdi() int getClusterIndex(int lr) const { return mIndex[lr]; }

GPUh() const int getFirstLayerClusterIndex() const
GPUh() int getFirstLayerClusterIndex() const
{
int firstLayer = getFirstClusterLayer();
return getClusterIndex(firstLayer);
return getClusterIndex(getFirstClusterLayer());
}

GPUhdi() void setExternalClusterIndex(int layer, int idx, bool newCluster = false)
Expand Down
Loading