You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// do low mult. cluster first, should steal less, keep relative order though
88
-
std::iota(vertOrder.begin(), vertOrder.end(), 0);
89
-
std::stable_sort(vertOrder.begin(), vertOrder.end(), [&](int a, int b) -> bool { returnmTimeFrame->getPrimaryVertices(iROFs)[a].getNContributors() < mTimeFrame->getPrimaryVertices(iROFs)[b].getNContributors(); });
if (trackletsPerCluster > mTrkParams[iteration].TrackletsPerClusterLimit) {
90
+
error(std::format("Too many tracklets per cluster ({}) in iteration {} in ROF span {}-{}:, check the detector status and/or the selections. Current limit is {}",
if (trackletsPerCluster > mTrkParams[iteration].TrackletsPerClusterLimit) {
99
-
error(std::format("Too many tracklets per cluster ({}) in iteration {} in ROF span {}-{}:, check the detector status and/or the selections. Current limit is {}",
if (cellsPerCluster > mTrkParams[iteration].CellsPerClusterLimit) {
107
-
error(std::format("Too many cells per cluster ({}) in iteration {} in ROF span {}-{}, check the detector status and/or the selections. Current limit is {}",
if (cellsPerCluster > mTrkParams[iteration].CellsPerClusterLimit) {
99
+
error(std::format("Too many cells per cluster ({}) in iteration {} in ROF span {}-{}, check the detector status and/or the selections. Current limit is {}",
// do low mult. cluster first, should steal less, keep relative order though
83
+
if (mTrkParams[iteration].PerPrimaryVertexProcessing) {
84
+
std::stable_sort(vertOrder.begin(), vertOrder.end(), [&](int a, int b) -> bool { returnmTimeFrame->getPrimaryVertices(rof0)[a].getNContributors() < mTimeFrame->getPrimaryVertices(rof0)[b].getNContributors(); });
82
85
}
83
86
int minRof = o2::gpu::CAMath::Max(startROF, rof0 - mTrkParams[iteration].DeltaROF);
84
87
int maxRof = o2::gpu::CAMath::Min(endROF - 1, rof0 + mTrkParams[iteration].DeltaROF);
@@ -104,7 +107,7 @@ void TrackerTraits<nLayers>::computeLayerTracklets(const int iteration, int iROF
0 commit comments