15#define GPUCA_CADEBUG 0
16#define GPUCA_MERGE_LOOPER_MC 0
20#if !defined(GPUCA_GPUCODE) && (defined(GPUCA_MERGER_BY_MC_LABEL) || defined(GPUCA_CADEBUG_ENABLED) || GPUCA_MERGE_LOOPER_MC)
25#ifndef GPUCA_GPUCODE_DEVICE
67using namespace gputpcgmmergertypes;
69static constexpr int32_t kMaxParts = 400;
95 mNextSectorInd[mid] = 0;
96 mPrevSectorInd[0] = mid;
102#if !defined(GPUCA_GPUCODE) && (defined(GPUCA_MERGER_BY_MC_LABEL) || defined(GPUCA_CADEBUG_ENABLED) || GPUCA_MERGE_LOOPER_MC)
105void GPUTPCGMMerger::CheckMergedTracks()
107 std::vector<bool> trkUsed(SectorTrackInfoLocalTotal());
108 for (int32_t
i = 0;
i < SectorTrackInfoLocalTotal();
i++) {
112 for (int32_t itr = 0; itr < SectorTrackInfoLocalTotal(); itr++) {
114 if (track.PrevSegmentNeighbour() >= 0) {
117 if (track.PrevNeighbour() >= 0) {
123 int32_t iTrk = tr - mSectorTrackInfos;
125 GPUError(
"FAILURE: double use");
127 trkUsed[iTrk] =
true;
129 int32_t jtr = tr->NextSegmentNeighbour();
131 tr = &(mSectorTrackInfos[jtr]);
134 jtr = trbase->NextNeighbour();
136 trbase = &(mSectorTrackInfos[jtr]);
138 if (tr->PrevSegmentNeighbour() >= 0) {
147 for (int32_t
i = 0;
i < SectorTrackInfoLocalTotal();
i++) {
148 if (trkUsed[
i] ==
false) {
149 GPUError(
"FAILURE: trk missed");
165template <
class T,
class S>
166int64_t GPUTPCGMMerger::GetTrackLabelA(
const S& trk)
const
170 if constexpr (std::is_same<S, GPUTPCGMBorderTrack&>::value) {
171 sectorTrack = &mSectorTrackInfos[trk.TrackID()];
172 nClusters = sectorTrack->OrigTrack()->NHits();
176 auto acc =
GPUTPCTrkLbl<false, GPUTPCTrkLbl_ret>(resolveMCLabels<T>(GetConstantMem()->ioPtrs.clustersNative ? GetConstantMem()->ioPtrs.clustersNative->clustersMCTruth : nullptr, GetConstantMem()->ioPtrs.mcLabelsTPC), 0.5f);
179 if constexpr (std::is_same<S, GPUTPCGMBorderTrack&>::value) {
180 const GPUTPCTracker& tracker = GetConstantMem()->tpcTrackers[sectorTrack->Sector()];
181 const GPUTPCHitId& ic = tracker.TrackHits()[sectorTrack->OrigTrack()->FirstHitID() +
i];
182 id = tracker.Data().ClusterDataIndex(tracker.Data().Row(ic.RowIndex()), ic.HitIndex()) + GetConstantMem()->ioPtrs.clustersNative->clusterOffset[sectorTrack->Sector()][0];
184 id = mClusters[trk.FirstClusterRef() +
i].
num;
188 return acc.computeLabel().id;
192int64_t GPUTPCGMMerger::GetTrackLabel(
const S& trk)
const
194#ifdef GPUCA_TPC_GEOMETRY_O2
195 if (GetConstantMem()->ioPtrs.clustersNative->clustersMCTruth) {
196 return GetTrackLabelA<o2::dataformats::ConstMCTruthContainerView<o2::MCCompLabel>,
S>(trk);
200 return GetTrackLabelA<AliHLTTPCClusterMCLabel, S>(trk);
207void GPUTPCGMMerger::PrintMergeGraph(
const GPUTPCGMSectorTrack* trk, std::ostream& out)
const
210 while (trk->PrevSegmentNeighbour() >= 0) {
211 trk = &mSectorTrackInfos[trk->PrevSegmentNeighbour()];
214 while (trk->PrevNeighbour() >= 0) {
215 trk = &mSectorTrackInfos[trk->PrevNeighbour()];
218 int32_t nextId = trk - mSectorTrackInfos;
219 out <<
"Graph of track " << (orgTrack - mSectorTrackInfos) <<
"\n";
220 while (nextId >= 0) {
221 trk = &mSectorTrackInfos[nextId];
222 if (trk->PrevSegmentNeighbour() >= 0) {
223 out <<
"TRACK TREE INVALID!!! " << trk->PrevSegmentNeighbour() <<
" --> " << nextId <<
"\n";
225 out << (trk == orgTower ?
"--" :
" ");
226 while (nextId >= 0) {
228 if (trk != trk2 && (trk2->PrevNeighbour() >= 0 || trk2->NextNeighbour() >= 0)) {
229 out <<
" (TRACK TREE INVALID!!! " << trk2->PrevNeighbour() <<
" <-- " << nextId <<
" --> " << trk2->NextNeighbour() <<
") ";
232 snprintf(tmp, 128,
" %s%5d(%5.2f)", trk2 == orgTrack ?
"!" :
" ", nextId, trk2->QPt());
234 nextId = trk2->NextSegmentNeighbour();
237 nextId = trk->NextNeighbour();
257 mBorder[
iSector] = mBorderMemory + 2 * nTracks;
259 mBorderRange[
iSector] = mBorderRangeMemory + 2 * nTracks;
267 memMax = (
void*)std::max((
size_t)mem, (size_t)memMax);
271 memMax = (
void*)std::max((
size_t)mem, (size_t)memMax);
275 memMax = (
void*)std::max((
size_t)mem, (size_t)memMax);
278 memMax = (
void*)std::max((
size_t)mem, (size_t)memMax);
316 mClusterStateExt =
nullptr;
366 mNTotalSectorTracks = 0;
368 mNMaxSingleSectorTracks = 0;
371 mNTotalSectorTracks += ntrk;
373 if (mNMaxSingleSectorTracks < ntrk) {
374 mNMaxSingleSectorTracks = ntrk;
378 if (CAMath::Abs(
Param().polynomialField.GetNominalBz()) < (0.01f * gpu_common_constants::kCLight)) {
391 mNMaxClusters = mNClusters;
393 mNMaxLooperMatches = mNMaxClusters / 4;
400 throw std::runtime_error(
"mNMaxSingleSectorTracks too small");
404 throw std::runtime_error(
"Must run also sector tracking");
413 const int32_t
n =
output ? mMemory->nOutputTracks : SectorTrackInfoLocalTotal();
414 for (int32_t
i = iBlock * nThreads + iThread;
i <
n;
i += nThreads * nBlocks) {
422 prop.SetMaterialTPC();
424 prop.SetToyMCEventsFlag(
false);
425 prop.SetSeedingErrors(
true);
426 prop.SetFitInProjections(
false);
427 prop.SetPolynomialField(&
Param().polynomialField);
429 trk.X() = inTrack->Param().GetX();
430 trk.
Y() = inTrack->Param().GetY();
431 trk.
Z() = inTrack->Param().GetZ();
432 trk.SinPhi() = inTrack->Param().GetSinPhi();
433 trk.DzDs() = inTrack->Param().GetDzDs();
434 trk.QPt() = inTrack->Param().GetQPt();
435 trk.TZOffset() =
Param().par.earlyTpcTransform ? inTrack->Param().GetZOffset() : GetConstantMem()->calibObjects.fastTransformHelper->getCorrMap()->convZOffsetToVertexTime(sector, inTrack->Param().GetZOffset(),
Param().continuousMaxTimeBin);
436 trk.ShiftZ(
this, sector, sectorTrack.ClusterZT0(), sectorTrack.ClusterZTN(), inTrack->Param().GetX(), inTrack->Param().GetX());
437 sectorTrack.SetX2(0.f);
438 for (int32_t way = 0; way < 2; way++) {
440 prop.SetFitInProjections(
true);
441 prop.SetPropagateBzOnly(
true);
443 trk.ResetCovariance();
444 prop.SetTrack(&trk,
alpha);
445 int32_t
start = way ? inTrack->NHits() - 1 : 0;
446 int32_t
end = way ? 0 : (inTrack->NHits() - 1);
447 int32_t incr = way ? -1 : 1;
451 const GPUTPCTracker& tracker = GetConstantMem()->tpcTrackers[sector];
452 const GPUTPCHitId& ic = tracker.TrackHits()[inTrack->FirstHitID() +
i];
453 int32_t clusterIndex = tracker.Data().ClusterDataIndex(tracker.Data().Row(ic.RowIndex()), ic.HitIndex());
455 const ClusterNative& cl = GetConstantMem()->ioPtrs.clustersNative->clustersLinear[GetConstantMem()->ioPtrs.clustersNative->clusterOffset[sector][0] + clusterIndex];
456 flags = cl.getFlags();
457 if (
Param().par.earlyTpcTransform) {
458 x = tracker.Data().ClusterData()[clusterIndex].x;
459 y = tracker.Data().ClusterData()[clusterIndex].y;
460 z = tracker.Data().ClusterData()[clusterIndex].
z - trk.TZOffset();
462 GetConstantMem()->calibObjects.fastTransformHelper->Transform(sector,
row, cl.getPad(), cl.getTime(),
x,
y,
z, trk.TZOffset());
464 if (prop.PropagateToXAlpha(
x,
alpha,
true)) {
467 trk.ConstrainSinPhi();
468 if (prop.Update(
y,
z,
row,
Param(),
flags &
GPUTPCGMMergedTrackHit::clustererAndSharedFlags, 0,
nullptr,
false, sector, -1.f, 0.f, 0.f)) {
471 trk.ConstrainSinPhi();
474 sectorTrack.SetParam2(trk);
476 sectorTrack.Set(trk, inTrack,
alpha, sector);
484 const GPUTPCTracker& trk = GetConstantMem()->tpcTrackers[iSector];
485 const GPUTPCHitId& ic1 = trk.TrackHits()[sectorTr->FirstHitID()];
486 const GPUTPCHitId& ic2 = trk.TrackHits()[sectorTr->FirstHitID() + sectorTr->NHits() - 1];
487 int32_t clusterIndex1 = trk.Data().ClusterDataIndex(trk.Data().Row(ic1.RowIndex()), ic1.HitIndex());
488 int32_t clusterIndex2 = trk.Data().ClusterDataIndex(trk.Data().Row(ic2.RowIndex()), ic2.HitIndex());
489 if (
Param().par.earlyTpcTransform) {
490 track.SetClusterZT(trk.Data().ClusterData()[clusterIndex1].
z, trk.Data().ClusterData()[clusterIndex2].
z);
492 const ClusterNative* cl = GetConstantMem()->ioPtrs.clustersNative->clustersLinear + GetConstantMem()->ioPtrs.clustersNative->clusterOffset[iSector][0];
493 track.SetClusterZT(cl[clusterIndex1].
getTime(), cl[clusterIndex2].
getTime());
499 mSectorTrackInfoIndex[
id] = mMemory->nUnpackedTracks;
502GPUd()
void GPUTPCGMMerger::UnpackSectorGlobal(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread, int32_t iSector)
504 const GPUTPCTracker& trk = GetConstantMem()->tpcTrackers[iSector];
506 const GPUTPCTrack* sectorTr = mMemory->firstExtrapolatedTracks[iSector];
507 uint32_t nLocalTracks = trk.CommonMemory()->nLocalTracks;
508 uint32_t nTracks = *trk.NTracks();
509 for (uint32_t itr = nLocalTracks + iBlock * nThreads + iThread; itr < nTracks; itr += nBlocks * nThreads) {
510 sectorTr = &trk.Tracks()[itr];
511 int32_t localId = mTrackIDs[(sectorTr->LocalTrackId() >> 24) * mNMaxSingleSectorTracks + (sectorTr->LocalTrackId() & 0xFFFFFF)];
515 uint32_t myTrack = CAMath::AtomicAdd(&mMemory->nUnpackedTracks, 1u);
517 SetTrackClusterZT(track, iSector, sectorTr);
518 track.Set(
this, sectorTr,
alpha, iSector);
519 track.SetGlobalSectorTrackCov();
520 track.SetPrevNeighbour(-1);
521 track.SetNextNeighbour(-1);
522 track.SetNextSegmentNeighbour(-1);
523 track.SetPrevSegmentNeighbour(-1);
524 track.SetLocalTrackId(localId);
528GPUd()
void GPUTPCGMMerger::UnpackResetIds(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread, int32_t iSector)
530 const GPUTPCTracker& trk = GetConstantMem()->tpcTrackers[iSector];
531 uint32_t nLocalTracks = trk.CommonMemory()->nLocalTracks;
532 for (uint32_t
i = iBlock * nThreads + iThread;
i < nLocalTracks;
i += nBlocks * nThreads) {
533 mTrackIDs[iSector * mNMaxSingleSectorTracks +
i] = -1;
537GPUd()
void GPUTPCGMMerger::RefitSectorTracks(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread, int32_t iSector)
539 const GPUTPCTracker& trk = GetConstantMem()->tpcTrackers[iSector];
540 uint32_t nLocalTracks = trk.CommonMemory()->nLocalTracks;
545 for (uint32_t itr = iBlock * nThreads + iThread; itr < nLocalTracks; itr += nBlocks * nThreads) {
546 sectorTr = &trk.Tracks()[itr];
548 SetTrackClusterZT(track, iSector, sectorTr);
549 if (
Param().
rec.tpc.mergerCovSource == 0) {
550 track.Set(
this, sectorTr,
alpha, iSector);
554 }
else if (
Param().
rec.tpc.mergerCovSource == 1) {
555 track.Set(
this, sectorTr,
alpha, iSector);
556 track.CopyBaseTrackCov();
557 }
else if (
Param().
rec.tpc.mergerCovSource == 2) {
558 if (RefitSectorTrack(track, sectorTr,
alpha, iSector)) {
559 track.Set(
this, sectorTr,
alpha, iSector);
566 CADEBUG(GPUInfo(
"INPUT Sector %d, Track %u, QPt %f DzDs %f", iSector, itr, track.QPt(), track.DzDs()));
567 track.SetPrevNeighbour(-1);
568 track.SetNextNeighbour(-1);
569 track.SetNextSegmentNeighbour(-1);
570 track.SetPrevSegmentNeighbour(-1);
571 track.SetExtrapolatedTrackId(0, -1);
572 track.SetExtrapolatedTrackId(1, -1);
573 uint32_t myTrack = CAMath::AtomicAdd(&mMemory->nUnpackedTracks, 1u);
574 mTrackIDs[iSector * mNMaxSingleSectorTracks + sectorTr->LocalTrackId()] = myTrack;
575 mSectorTrackInfos[myTrack] = track;
579GPUd()
void GPUTPCGMMerger::LinkExtrapolatedTracks(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread)
581 for (int32_t itr = SectorTrackInfoGlobalFirst(0) + iBlock * nThreads + iThread; itr < SectorTrackInfoGlobalLast(NSECTORS - 1); itr += nThreads * nBlocks) {
584 if (localTrack.ExtrapolatedTrackId(0) != -1 || !CAMath::AtomicCAS(&localTrack.ExtrapolatedTrackIds()[0], -1, itr)) {
585 localTrack.SetExtrapolatedTrackId(1, itr);
595 float fieldBz =
Param().bzCLight;
597 float dAlpha =
Param().par.dAlpha / 2;
601 dAlpha = dAlpha - CAMath::Pi() / 2;
602 }
else if (iBorder == 1) {
603 dAlpha = -dAlpha - CAMath::Pi() / 2;
604 }
else if (iBorder == 2) {
605 x0 = GPUTPCGeometry::Row2X(63);
606 }
else if (iBorder == 3) {
608 x0 = GPUTPCGeometry::Row2X(63);
609 }
else if (iBorder == 4) {
611 x0 = GPUTPCGeometry::Row2X(63);
614 const float maxSin = CAMath::Sin(60.f / 180.f * CAMath::Pi());
615 float cosAlpha = CAMath::Cos(dAlpha);
616 float sinAlpha = CAMath::Sin(dAlpha);
619 for (int32_t itr = iBlock * nThreads + iThread; itr < SectorTrackInfoLocalTotal(); itr += nThreads * nBlocks) {
621 int32_t iSector = track->Sector();
623 if (track->PrevSegmentNeighbour() >= 0 && track->Sector() == mSectorTrackInfos[track->PrevSegmentNeighbour()].Sector()) {
626 if (useOrigTrackParam) {
627 if (CAMath::Abs(track->QPt()) *
Param().qptB5Scaler <
Param().rec.tpc.mergerLooperQPtB5Limit) {
631 while (track->NextSegmentNeighbour() >= 0 && track->Sector() == mSectorTrackInfos[track->NextSegmentNeighbour()].Sector()) {
632 track = &mSectorTrackInfos[track->NextSegmentNeighbour()];
633 if (track->OrigTrack()->Param().X() < trackMin->OrigTrack()->Param().X()) {
637 trackTmp = *trackMin;
639 if (
Param().rec.tpc.mergerCovSource == 2 && trackTmp.X2() != 0.f) {
640 trackTmp.UseParam2();
642 trackTmp.Set(
this, trackMin->OrigTrack(), trackMin->Alpha(), trackMin->Sector());
645 if (CAMath::Abs(track->QPt()) *
Param().qptB5Scaler <
Param().rec.tpc.mergerLooperSecondHorizontalQPtB5Limit) {
646 if (iBorder == 0 && track->NextNeighbour() >= 0) {
649 if (iBorder == 1 && track->PrevNeighbour() >= 0) {
656 if (track->TransportToXAlpha(
this,
x0, sinAlpha, cosAlpha, fieldBz,
b, maxSin)) {
658 b.SetNClusters(track->NClusters());
659 for (int32_t
i = 0;
i < 4;
i++) {
660 if (CAMath::Abs(
b.Cov()[
i]) >= 5.0f) {
664 if (CAMath::Abs(
b.Cov()[4]) >= 0.5f) {
667 uint32_t myTrack = CAMath::AtomicAdd(&nB[iSector], 1u);
668 B[iSector][myTrack] =
b;
674GPUd()
void GPUTPCGMMerger::MergeBorderTracks<0>(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread, int32_t iSector1,
GPUTPCGMBorderTrack*
B1, int32_t N1, int32_t iSector2,
GPUTPCGMBorderTrack* B2, int32_t N2, int32_t mergeMode)
676 CADEBUG(GPUInfo(
"\nMERGING Sectors %d %d NTracks %d %d CROSS %d", iSector1, iSector2, N1, N2, mergeMode));
678 GPUTPCGMBorderRange* range2 = mBorderRange[iSector2] + *GetConstantMem()->tpcTrackers[iSector2].NTracks();
679 bool sameSector = (iSector1 == iSector2);
680 for (int32_t itr = iBlock * nThreads + iThread; itr < N1; itr += nThreads * nBlocks) {
682 float d = CAMath::Max(0.5f, 3.5f * CAMath::Sqrt(
b.Cov()[1]));
683 if (CAMath::Abs(
b.Par()[4]) *
Param().qptB5Scaler >= 20) {
688 CADEBUG(printf(
" Input Sector 1 %d Track %d: ", iSector1, itr);
for (int32_t
i = 0;
i < 5;
i++) { printf(
"%8.3f ",
b.Par()[
i]); } printf(
" - ");
for (int32_t
i = 0;
i < 5;
i++) { printf(
"%8.3f ",
b.Cov()[
i]); } printf(
" - D %8.3f\n", d));
691 range.fMin =
b.Par()[1] +
b.ZOffsetLinear() - d;
692 range.fMax =
b.Par()[1] +
b.ZOffsetLinear() + d;
699 for (int32_t itr = iBlock * nThreads + iThread; itr < N2; itr += nThreads * nBlocks) {
701 float d = CAMath::Max(0.5f, 3.5f * CAMath::Sqrt(
b.Cov()[1]));
702 if (CAMath::Abs(
b.Par()[4]) *
Param().qptB5Scaler >= 20) {
707 CADEBUG(printf(
" Input Sector 2 %d Track %d: ", iSector2, itr);
for (int32_t
i = 0;
i < 5;
i++) { printf(
"%8.3f ",
b.Par()[
i]); } printf(
" - ");
for (int32_t
i = 0;
i < 5;
i++) { printf(
"%8.3f ",
b.Cov()[
i]); } printf(
" - D %8.3f\n", d));
710 range.fMin =
b.Par()[1] +
b.ZOffsetLinear() - d;
711 range.fMax =
b.Par()[1] +
b.ZOffsetLinear() + d;
718GPUd()
void GPUTPCGMMerger::MergeBorderTracks<1>(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread, int32_t iSector1,
GPUTPCGMBorderTrack*
B1, int32_t N1, int32_t iSector2,
GPUTPCGMBorderTrack* B2, int32_t N2, int32_t mergeMode)
720#if !defined(GPUCA_GPUCODE_COMPILEKERNELS)
722 GPUTPCGMBorderRange* range2 = mBorderRange[iSector2] + *GetConstantMem()->tpcTrackers[iSector2].NTracks();
727 }
else if (iBlock == 1) {
732 printf(
"This sorting variant is disabled for RTC");
736#if defined(GPUCA_SPECIALIZE_THRUST_SORTS) && !defined(GPUCA_GPUCODE_COMPILEKERNELS)
741struct MergeBorderTracks_compMax {
747struct MergeBorderTracks_compMin {
760 GPUCommonAlgorithm::sortOnDevice(
this, _xyz.x.stream,
range, N, MergeBorderTracks_compMax());
762 GPUCommonAlgorithm::sortOnDevice(
this, _xyz.x.stream,
range, N, MergeBorderTracks_compMin());
770#ifndef GPUCA_SPECIALIZE_THRUST_SORTS
782GPUd()
void GPUTPCGMMerger::MergeBorderTracks<2>(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread, int32_t iSector1,
GPUTPCGMBorderTrack*
B1, int32_t N1, int32_t iSector2,
GPUTPCGMBorderTrack* B2, int32_t N2, int32_t mergeMode)
785 float factor2ys =
Param().rec.tpc.trackMergerFactor2YS;
786 float factor2zt =
Param().rec.tpc.trackMergerFactor2ZT;
787 float factor2k =
Param().rec.tpc.trackMergerFactor2K;
788 float factor2General =
Param().rec.tpc.trackMergerFactor2General;
790 factor2k = factor2General * factor2k;
791 factor2ys = factor2General * factor2ys;
792 factor2zt = factor2General * factor2zt;
794 int32_t minNPartHits =
Param().rec.tpc.trackMergerMinPartHits;
795 int32_t minNTotalHits =
Param().rec.tpc.trackMergerMinTotalHits;
797 bool sameSector = (iSector1 == iSector2);
800 GPUTPCGMBorderRange* range2 = mBorderRange[iSector2] + *GetConstantMem()->tpcTrackers[iSector2].NTracks();
803 for (int32_t i1 = iBlock * nThreads + iThread; i1 < N1; i1 += nThreads * nBlocks) {
805 while (i2 < N2 && range2[i2].fMax < r1.
fMin) {
810 if (
b1.NClusters() < minNPartHits) {
816 for (int32_t k2 = i2; k2 < N2; k2++) {
821 if (sameSector && (r1.
fId >= r2.
fId)) {
827#if defined(GPUCA_MERGER_BY_MC_LABEL) && !defined(GPUCA_GPUCODE)
828 int64_t label1 = GetTrackLabel(
b1);
829 int64_t label2 = GetTrackLabel(b2);
830 if (label1 != label2 && label1 != -1)
833 CADEBUG(
if (GetConstantMem()->ioPtrs.mcLabelsTPC) {printf(
"Comparing track %3d to %3d: ", r1.fId, r2.fId); for (int32_t i = 0; i < 5; i++) { printf(
"%8.3f ", b1.Par()[i]); } printf(
" - ");
for (int32_t
i = 0;
i < 5;
i++) { printf(
"%8.3f ",
b1.Cov()[
i]); } printf(
"\n%28s",
""); });
834 CADEBUG(
if (GetConstantMem()->ioPtrs.mcLabelsTPC) {for (int32_t i = 0; i < 5; i++) { printf(
"%8.3f ", b2.Par()[i]); } printf(
" - ");
for (int32_t
i = 0;
i < 5;
i++) { printf(
"%8.3f ", b2.Cov()[
i]); } printf(
" - %5s - ", GetTrackLabel(
b1) == GetTrackLabel(b2) ?
"CLONE" :
"FAKE"); });
835 if (b2.NClusters() < lBest2) {
836 CADEBUG2(
continue, printf(
"!NCl1\n"));
840 int32_t maxRowDiff = mergeMode == 2 ? 1 : 3;
841 if (CAMath::Abs(
b1.Row() - b2.Row()) > maxRowDiff) {
842 CADEBUG2(
continue, printf(
"!ROW\n"));
844 if (CAMath::Abs(
b1.Par()[2] - b2.Par()[2]) > 0.5f || CAMath::Abs(
b1.Par()[3] - b2.Par()[3]) > 0.5f) {
845 CADEBUG2(
continue, printf(
"!CE SinPhi/Tgl\n"));
851 if (!
b1.CheckChi2Y(b2, factor2ys)) {
855 if (!
b1.CheckChi2QPt(b2, factor2k)) {
856 CADEBUG2(
continue, printf(
"!QPt\n"));
858 float fys = CAMath::Abs(
b1.Par()[4]) *
Param().qptB5Scaler < 20 ? factor2ys : (2.f * factor2ys);
859 float fzt = CAMath::Abs(
b1.Par()[4]) *
Param().qptB5Scaler < 20 ? factor2zt : (2.f * factor2zt);
860 if (!
b1.CheckChi2YS(b2, fys)) {
861 CADEBUG2(
continue, printf(
"!YS\n"));
863 if (!
b1.CheckChi2ZT(b2, fzt)) {
864 CADEBUG2(
continue, printf(
"!ZT\n"));
866 if (CAMath::Abs(
b1.Par()[4]) *
Param().qptB5Scaler < 20) {
867 if (b2.NClusters() < minNPartHits) {
868 CADEBUG2(
continue, printf(
"!NCl2\n"));
870 if (
b1.NClusters() + b2.NClusters() < minNTotalHits) {
871 CADEBUG2(
continue, printf(
"!NCl3\n"));
874 CADEBUG(printf(
"OK: dZ %8.3f D1 %8.3f D2 %8.3f\n", CAMath::Abs(
b1.Par()[1] - b2.Par()[1]), 3.5f * sqrt(
b1.Cov()[1]), 3.5f * sqrt(b2.Cov()[1])));
876 lBest2 = b2.NClusters();
877 iBest2 = b2.TrackID();
883 GPUCA_DEBUG_STREAMER_CHECK(
float weight =
b1.Par()[4] *
b1.Par()[4];
if (o2::utils::DebugStreamer::checkStream(
o2::utils::StreamFlags::streamMergeBorderTracksBest,
b1.TrackID(),
weight)) { MergedTrackStreamer(
b1, MergedTrackStreamerFindBorderTrack(B2, N2, iBest2),
"merge_best_track", iSector1, iSector2, mergeMode,
weight, o2::utils::DebugStreamer::getSamplingFrequency(
o2::utils::StreamFlags::streamMergeBorderTracksBest)); });
887 CADEBUG(GPUInfo(
"Found match %d %d",
b1.TrackID(), iBest2));
889 mTrackLinks[
b1.TrackID()] = iBest2;
899 if (withinSector == 1) {
901 n1 = n2 = mMemory->tmpCounter[iSector];
902 b1 = b2 = mBorder[iSector];
903 }
else if (withinSector == -1) {
904 jSector = (iSector + NSECTORS / 2);
905 const int32_t
offset = mergeMode == 2 ? NSECTORS : 0;
906 n1 = mMemory->tmpCounter[iSector +
offset];
907 n2 = mMemory->tmpCounter[jSector +
offset];
909 b2 = mBorder[jSector +
offset];
911 jSector = mNextSectorInd[iSector];
912 n1 = mMemory->tmpCounter[iSector];
913 n2 = mMemory->tmpCounter[NSECTORS + jSector];
914 b1 = mBorder[iSector];
915 b2 = mBorder[NSECTORS + jSector];
920GPUd()
void GPUTPCGMMerger::MergeBorderTracks(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread, int32_t iSector, int8_t withinSector, int8_t mergeMode)
925 MergeBorderTracksSetup(n1, n2,
b1, b2, jSector, iSector, withinSector, mergeMode);
926 MergeBorderTracks<I>(nBlocks, nThreads, iBlock, iThread, iSector,
b1, n1, jSector, b2, n2, mergeMode);
929#if !defined(GPUCA_GPUCODE) || defined(GPUCA_GPUCODE_DEVICE)
930template GPUdni()
void GPUTPCGMMerger::MergeBorderTracks<0>(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread, int32_t iSector, int8_t withinSector, int8_t mergeMode);
931template
GPUdni()
void GPUTPCGMMerger::MergeBorderTracks<1>(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread, int32_t iSector, int8_t withinSector, int8_t mergeMode);
932template
GPUdni()
void GPUTPCGMMerger::MergeBorderTracks<2>(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread, int32_t iSector, int8_t withinSector, int8_t mergeMode);
935GPUd()
void GPUTPCGMMerger::MergeWithinSectorsPrepare(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread)
937 float x0 = GPUTPCGeometry::Row2X(63);
938 const float maxSin = CAMath::Sin(60.f / 180.f * CAMath::Pi());
940 for (int32_t itr = iBlock * nThreads + iThread; itr < SectorTrackInfoLocalTotal(); itr += nThreads * nBlocks) {
942 int32_t iSector = track.Sector();
944 if (track.TransportToX(
this,
x0,
Param().bzCLight,
b, maxSin)) {
946 CADEBUG(printf(
"WITHIN SECTOR %d Track %d - ", iSector, itr);
for (int32_t
i = 0;
i < 5;
i++) { printf(
"%8.3f ",
b.Par()[
i]); } printf(
" - ");
for (int32_t
i = 0;
i < 5;
i++) { printf(
"%8.3f ",
b.Cov()[
i]); } printf(
"\n"));
947 b.SetNClusters(track.NClusters());
948 uint32_t myTrack = CAMath::AtomicAdd(&mMemory->tmpCounter[iSector], 1u);
949 mBorder[iSector][myTrack] =
b;
954GPUd()
void GPUTPCGMMerger::MergeSectorsPrepare(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread, int32_t border0, int32_t border1, int8_t useOrigTrackParam)
956 bool part2 = iBlock & 1;
957 int32_t
border = part2 ? border1 : border0;
964 MergeSectorsPrepareStep2((nBlocks + !part2) >> 1, nThreads, iBlock >> 1, iThread,
border,
b,
n, useOrigTrackParam);
969 start = (elems + nBlocks - 1) / nBlocks * iBlock;
970 end = (elems + nBlocks - 1) / nBlocks * (iBlock + 1);
971 end = CAMath::Min(elems,
end);
980 u = mTrackCCRoots[u];
981 v = mTrackCCRoots[
v];
985 int32_t
h = CAMath::Max(u,
v);
986 int32_t l = CAMath::Min(u,
v);
988 int32_t old = CAMath::AtomicCAS(&mTrackCCRoots[
h],
h, l);
993 u = mTrackCCRoots[
h];
998GPUd()
void GPUTPCGMMerger::ResolveFindConnectedComponentsSetup(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread)
1001 setBlockRange(SectorTrackInfoLocalTotal(), nBlocks, iBlock,
start,
end);
1002 for (int32_t
i =
start + iThread;
i <
end;
i += nThreads) {
1003 mTrackCCRoots[
i] =
i;
1007GPUd()
void GPUTPCGMMerger::ResolveFindConnectedComponentsHookLinks(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread)
1012 setBlockRange(SectorTrackInfoLocalTotal(), nBlocks, iBlock,
start,
end);
1013 for (int32_t itr =
start + iThread; itr <
end; itr += nThreads) {
1014 hookEdge(itr, mTrackLinks[itr]);
1018GPUd()
void GPUTPCGMMerger::ResolveFindConnectedComponentsHookNeighbors(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread)
1021 nBlocks = nBlocks / 4 * 4;
1022 if (iBlock >= nBlocks) {
1027 setBlockRange(SectorTrackInfoLocalTotal(), nBlocks / 4, iBlock / 4,
start,
end);
1029 int32_t myNeighbor = iBlock % 4;
1031 for (int32_t itr =
start + iThread; itr <
end; itr += nThreads) {
1032 int32_t
v = mSectorTrackInfos[itr].AnyNeighbour(myNeighbor);
1037GPUd()
void GPUTPCGMMerger::ResolveFindConnectedComponentsMultiJump(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread)
1041 setBlockRange(SectorTrackInfoLocalTotal(), nBlocks, iBlock,
start,
end);
1042 for (int32_t itr =
start + iThread; itr <
end; itr += nThreads) {
1044 int32_t next = mTrackCCRoots[root];
1050 next = mTrackCCRoots[next];
1051 }
while (root != next);
1052 mTrackCCRoots[itr] = root;
1089 setBlockRange(SectorTrackInfoLocalTotal(), nBlocks, iBlock,
start,
end);
1091 for (int32_t baseIdx = 0; baseIdx < SectorTrackInfoLocalTotal(); baseIdx += nThreads) {
1092 int32_t itr = baseIdx + iThread;
1093 bool inRange = itr < SectorTrackInfoLocalTotal();
1097 itr2 = mTrackLinks[itr];
1100 bool resolveSector = (itr2 > -1);
1101 if (resolveSector) {
1102 int32_t root = mTrackCCRoots[itr];
1103 resolveSector &= (
start <= root) && (root <
end);
1106 int16_t smemIdx = work_group_scan_inclusive_add(int16_t(resolveSector));
1108 if (resolveSector) {
1109 smem.iTrack1[smemIdx - 1] = itr;
1110 smem.iTrack2[smemIdx - 1] = itr2;
1114 if (iThread < nThreads - 1) {
1118 const int32_t nSectors = smemIdx;
1120 for (int32_t
i = 0;
i < nSectors;
i++) {
1121 itr = smem.iTrack1[
i];
1122 itr2 = smem.iTrack2[
i];
1129 bool sameSegment = CAMath::Abs(track1->NClusters() > track2->NClusters() ? track1->QPt() : track2->QPt()) *
Param().qptB5Scaler < 2 || track1->QPt() * track2->QPt() > 0;
1134 while (track2->PrevSegmentNeighbour() >= 0) {
1135 track2 = &mSectorTrackInfos[track2->PrevSegmentNeighbour()];
1138 if (track1 == track2) {
1141 while (track1->PrevSegmentNeighbour() >= 0) {
1142 track1 = &mSectorTrackInfos[track1->PrevSegmentNeighbour()];
1143 if (track1 == track2) {
1147 GPUCommonAlgorithm::swap(track1, track1Base);
1148 for (int32_t k = 0; k < 2; k++) {
1150 while (tmp->Neighbour(k) >= 0) {
1151 tmp = &mSectorTrackInfos[tmp->Neighbour(k)];
1152 if (tmp == track2) {
1158 while (track1->NextSegmentNeighbour() >= 0) {
1159 track1 = &mSectorTrackInfos[track1->NextSegmentNeighbour()];
1160 if (track1 == track2) {
1165 while (track1->PrevSegmentNeighbour() >= 0) {
1166 track1 = &mSectorTrackInfos[track1->PrevSegmentNeighbour()];
1169 if (track1 == track2) {
1172 for (int32_t k = 0; k < 2; k++) {
1174 while (tmp->Neighbour(k) >= 0) {
1175 tmp = &mSectorTrackInfos[tmp->Neighbour(k)];
1176 if (tmp == track2) {
1182 float z1min, z1max, z2min, z2max;
1183 z1min = track1->MinClusterZT();
1184 z1max = track1->MaxClusterZT();
1185 z2min = track2->MinClusterZT();
1186 z2max = track2->MaxClusterZT();
1187 if (track1 != track1Base) {
1188 z1min = CAMath::Min(z1min, track1Base->MinClusterZT());
1189 z1max = CAMath::Max(z1max, track1Base->MaxClusterZT());
1191 if (track2 != track2Base) {
1192 z2min = CAMath::Min(z2min, track2Base->MinClusterZT());
1193 z2max = CAMath::Max(z2max, track2Base->MaxClusterZT());
1195 bool goUp = z2max - z1min > z1max - z2min;
1197 if (track1->Neighbour(goUp) < 0 && track2->Neighbour(!goUp) < 0) {
1198 track1->SetNeighbor(track2 - mSectorTrackInfos, goUp);
1199 track2->SetNeighbor(track1 - mSectorTrackInfos, !goUp);
1203 }
else if (track1->Neighbour(goUp) < 0) {
1204 track2 = &mSectorTrackInfos[track2->Neighbour(!goUp)];
1205 GPUCommonAlgorithm::swap(track1, track2);
1206 }
else if (track2->Neighbour(!goUp) < 0) {
1207 track1 = &mSectorTrackInfos[track1->Neighbour(goUp)];
1209 track1 = &mSectorTrackInfos[track1->Neighbour(goUp)];
1211 track1Base = track1;
1214 track2Base = track2;
1216 while (track1->NextSegmentNeighbour() >= 0) {
1217 track1 = &mSectorTrackInfos[track1->NextSegmentNeighbour()];
1220 track1->SetNextSegmentNeighbour(track2 - mSectorTrackInfos);
1221 track2->SetPrevSegmentNeighbour(track1 - mSectorTrackInfos);
1224 for (int32_t k = 0; k < 2; k++) {
1225 track1 = track1Base;
1226 track2 = track2Base;
1227 while (track2->Neighbour(k) >= 0) {
1228 if (track1->Neighbour(k) >= 0) {
1231 track2->SetNeighbor(-1, k);
1232 track2new->SetNeighbor(-1, k ^ 1);
1234 while (track1->NextSegmentNeighbour() >= 0) {
1235 track1 = &mSectorTrackInfos[track1->NextSegmentNeighbour()];
1237 track1->SetNextSegmentNeighbour(track2new - mSectorTrackInfos);
1238 track2new->SetPrevSegmentNeighbour(track1 - mSectorTrackInfos);
1243 track1->SetNeighbor(track2->Neighbour(k), k);
1244 track2->SetNeighbor(-1, k);
1245 track2new->SetNeighbor(track1 - mSectorTrackInfos, k ^ 1);
1263 if (
Param().par.earlyTpcTransform) {
1267 auto& cln = mConstantMem->ioPtrs.clustersNative->clustersLinear[cls.num];
1268 GPUTPCConvertImpl::convert(*mConstantMem, cls.sector, cls.row, cln.getPad(), cln.getTime(),
x,
y,
z);
1271 if (!
Param().par.continuousTracking && CAMath::Abs(
z) > 10) {
1274 int32_t sector = track->Sector();
1275 for (int32_t attempt = 0; attempt < 2; attempt++) {
1277 const float x0 = GPUTPCGeometry::Row2X(attempt == 0 ? 63 : cls.
row);
1280 b.SetNClusters(mOutputTracks[itr].NClusters());
1281 if (CAMath::Abs(
b.Cov()[4]) >= 0.5f) {
1284 if (track->CSide()) {
1285 b.SetPar(1,
b.Par()[1] - 2 * (
z -
b.ZOffsetLinear()));
1286 b.SetZOffsetLinear(-
b.ZOffsetLinear());
1289 uint32_t
id = sector + attempt * NSECTORS;
1290 uint32_t myTrack = CAMath::AtomicAdd(&mMemory->tmpCounter[
id], 1u);
1291 mBorder[
id][myTrack] =
b;
1299 const ClusterNative* cls =
Param().par.earlyTpcTransform ? nullptr : mConstantMem->ioPtrs.clustersNative->clustersLinear;
1300 for (uint32_t
i = iBlock * nThreads + iThread;
i < mMemory->nOutputTracks;
i += nThreads * nBlocks) {
1301 if (mOutputTracks[
i].CSide() == 0 && mTrackLinks[
i] >= 0) {
1302 if (mTrackLinks[mTrackLinks[
i]] != (int32_t)
i) {
1307 if (!trk[1]->OK() || trk[1]->CCE()) {
1310 bool celooper = (trk[0]->GetParam().GetQPt() *
Param().qptB5Scaler > 1 && trk[0]->GetParam().GetQPt() * trk[1]->GetParam().GetQPt() < 0);
1311 bool looper = trk[0]->Looper() || trk[1]->Looper() || celooper;
1312 if (!looper && trk[0]->GetParam().GetPar(3) * trk[1]->GetParam().GetPar(3) < 0) {
1316 uint32_t newRef = CAMath::AtomicAdd(&mMemory->nOutputTrackClusters, trk[0]->NClusters() + trk[1]->NClusters());
1317 if (newRef + trk[0]->NClusters() + trk[1]->NClusters() >= mNMaxOutputTrackClusters) {
1318 raiseError(GPUErrors::ERROR_MERGER_CE_HIT_OVERFLOW, newRef + trk[0]->NClusters() + trk[1]->NClusters(), mNMaxOutputTrackClusters);
1319 for (uint32_t k = newRef; k < mNMaxOutputTrackClusters; k++) {
1320 mClusters[k].num = 0;
1321 mClusters[k].state = 0;
1323 CAMath::AtomicExch(&mMemory->nOutputTrackClusters, mNMaxOutputTrackClusters);
1327 bool needswap =
false;
1330 if (
Param().par.earlyTpcTransform) {
1331 z0max = CAMath::Max(CAMath::Abs(mClustersXYZ[trk[0]->FirstClusterRef()].
z), CAMath::Abs(mClustersXYZ[trk[0]->FirstClusterRef() + trk[0]->NClusters() - 1].
z));
1332 z1max = CAMath::Max(CAMath::Abs(mClustersXYZ[trk[1]->FirstClusterRef()].
z), CAMath::Abs(mClustersXYZ[trk[1]->FirstClusterRef() + trk[1]->NClusters() - 1].
z));
1334 z0max = -CAMath::Min(cls[mClusters[trk[0]->FirstClusterRef()].
num].
getTime(), cls[mClusters[trk[0]->FirstClusterRef() + trk[0]->NClusters() - 1].
num].
getTime());
1335 z1max = -CAMath::Min(cls[mClusters[trk[1]->FirstClusterRef()].
num].
getTime(), cls[mClusters[trk[1]->FirstClusterRef() + trk[1]->NClusters() - 1].
num].
getTime());
1337 if (z1max < z0max) {
1341 if (mClusters[trk[0]->FirstClusterRef()].
row > mClusters[trk[1]->FirstClusterRef()].
row) {
1346 GPUCommonAlgorithm::swap(trk[0], trk[1]);
1349 bool reverse[2] = {
false,
false};
1351 if (
Param().par.earlyTpcTransform) {
1352 reverse[0] = (mClustersXYZ[trk[0]->FirstClusterRef()].z > mClustersXYZ[trk[0]->FirstClusterRef() + trk[0]->NClusters() - 1].z) ^ (trk[0]->CSide() > 0);
1353 reverse[1] = (mClustersXYZ[trk[1]->FirstClusterRef()].z < mClustersXYZ[trk[1]->FirstClusterRef() + trk[1]->NClusters() - 1].z) ^ (trk[1]->CSide() > 0);
1355 reverse[0] = cls[mClusters[trk[0]->FirstClusterRef()].num].getTime() < cls[mClusters[trk[0]->FirstClusterRef() + trk[0]->NClusters() - 1].num].getTime();
1356 reverse[1] = cls[mClusters[trk[1]->FirstClusterRef()].num].getTime() > cls[mClusters[trk[1]->FirstClusterRef() + trk[1]->NClusters() - 1].num].getTime();
1360 if (
Param().par.continuousTracking) {
1361 if (
Param().par.earlyTpcTransform) {
1362 const float z0 = trk[0]->CSide() ? CAMath::Max(mClustersXYZ[trk[0]->FirstClusterRef()].
z, mClustersXYZ[trk[0]->FirstClusterRef() + trk[0]->NClusters() - 1].
z) :
CAMath::Min(mClustersXYZ[trk[0]->FirstClusterRef()].
z, mClustersXYZ[trk[0]->FirstClusterRef() + trk[0]->NClusters() - 1].
z);
1363 const float z1 = trk[1]->CSide() ? CAMath::Max(mClustersXYZ[trk[1]->FirstClusterRef()].
z, mClustersXYZ[trk[1]->FirstClusterRef() + trk[1]->NClusters() - 1].
z) :
CAMath::Min(mClustersXYZ[trk[1]->FirstClusterRef()].
z, mClustersXYZ[trk[1]->FirstClusterRef() + trk[1]->NClusters() - 1].
z);
1364 const float offset = CAMath::Abs(z1) > CAMath::Abs(z0) ? -z0 :
z1;
1365 trk[1]->Param().Z() += trk[1]->Param().TZOffset() -
offset;
1366 trk[1]->Param().TZOffset() =
offset;
1369 const float tmax = CAMath::MaxWithRef(cls[mClusters[trk[0]->FirstClusterRef()].
num].
getTime(), cls[mClusters[trk[0]->FirstClusterRef() + trk[0]->NClusters() - 1].
num].
getTime(),
1370 cls[mClusters[trk[1]->FirstClusterRef()].
num].
getTime(), cls[mClusters[trk[1]->FirstClusterRef() + trk[1]->NClusters() - 1].
num].
getTime(),
1371 &mClusters[trk[0]->FirstClusterRef()], &mClusters[trk[0]->FirstClusterRef() + trk[0]->NClusters() - 1],
1372 &mClusters[trk[1]->FirstClusterRef()], &mClusters[trk[1]->FirstClusterRef() + trk[1]->NClusters() - 1], clsmax);
1373 const float offset = CAMath::Max(tmax - mConstantMem->calibObjects.fastTransformHelper->getCorrMap()->getMaxDriftTime(clsmax->
sector, clsmax->
row, cls[clsmax->
num].getPad()), 0.f);
1374 trk[1]->Param().Z() += mConstantMem->calibObjects.fastTransformHelper->getCorrMap()->convDeltaTimeToDeltaZinTimeFrame(trk[1]->CSide() * NSECTORS / 2, trk[1]->
Param().TZOffset() -
offset);
1375 trk[1]->Param().TZOffset() =
offset;
1379 int32_t
pos = newRef;
1381 int32_t lastLeg = -1;
1383 for (int32_t k = 1; k >= 0; k--) {
1384 int32_t loopstart =
reverse[k] ? (trk[k]->NClusters() - 1) : 0;
1385 int32_t loopend =
reverse[k] ? -1 : (int32_t)trk[k]->NClusters();
1386 int32_t loopinc =
reverse[k] ? -1 : 1;
1387 for (int32_t
j = loopstart;
j != loopend;
j += loopinc) {
1388 if (
Param().par.earlyTpcTransform) {
1389 mClustersXYZ[
pos] = mClustersXYZ[trk[k]->FirstClusterRef() +
j];
1391 mClusters[
pos] = mClusters[trk[k]->FirstClusterRef() +
j];
1393 if (mClusters[trk[k]->FirstClusterRef() +
j].leg != lastLeg) {
1395 lastLeg = mClusters[trk[k]->FirstClusterRef() +
j].leg;
1397 mClusters[
pos].leg =
leg;
1405 trk[1]->SetFirstClusterRef(newRef);
1406 trk[1]->SetNClusters(trk[0]->NClusters() + trk[1]->NClusters());
1411 trk[1]->SetCCE(
true);
1413 trk[1]->SetLooper(
true);
1414 trk[1]->SetLegs(
leg + 1);
1416 trk[0]->SetNClusters(0);
1417 trk[0]->SetOK(
false);
1428struct GPUTPCGMMerger_CompareClusterIdsLooper {
1429 struct clcomparestruct {
1438 GPUd() bool operator()(const int16_t
aa, const int16_t
bb)
1440 const clcomparestruct&
a =
cmp2[
aa];
1444 if (
a.leg !=
b.leg) {
1445 return ((
leg > 0) ^ (
a.leg >
b.leg));
1454struct GPUTPCGMMerger_CompareClusterIds {
1457 GPUd() bool operator()(const int16_t
aa, const int16_t
bb)
1461 if (
a.row !=
b.row) {
1462 return (
a.row >
b.row);
1470GPUd()
void GPUTPCGMMerger::CollectMergedTracks(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread)
1474 for (int32_t itr = iBlock * nThreads + iThread; itr < SectorTrackInfoLocalTotal(); itr += nThreads * nBlocks) {
1478 if (track.PrevSegmentNeighbour() >= 0) {
1481 if (track.PrevNeighbour() >= 0) {
1488 tr->SetPrevSegmentNeighbour(1000000000);
1490 if (nParts >= kMaxParts) {
1493 if (nHits + tr->NClusters() > kMaxClusters) {
1496 nHits += tr->NClusters();
1499 trackParts[nParts++] = tr;
1500 for (int32_t
i = 0;
i < 2;
i++) {
1501 if (tr->ExtrapolatedTrackId(
i) != -1) {
1502 if (nParts >= kMaxParts) {
1505 if (nHits + mSectorTrackInfos[tr->ExtrapolatedTrackId(
i)].NClusters() > kMaxClusters) {
1508 trackParts[nParts] = &mSectorTrackInfos[tr->ExtrapolatedTrackId(
i)];
1509 trackParts[nParts++]->SetLeg(
leg);
1510 nHits += mSectorTrackInfos[tr->ExtrapolatedTrackId(
i)].NClusters();
1513 int32_t jtr = tr->NextSegmentNeighbour();
1515 tr = &(mSectorTrackInfos[jtr]);
1516 tr->SetPrevSegmentNeighbour(1000000002);
1519 jtr = trbase->NextNeighbour();
1521 trbase = &(mSectorTrackInfos[jtr]);
1523 if (tr->PrevSegmentNeighbour() >= 0) {
1526 tr->SetPrevSegmentNeighbour(1000000001);
1534 if (nParts > 1 &&
leg == 0) {
1537 if (
a->X() !=
b->X()) {
1538 return (a->X() > b->X());
1540 if (
a->Y() !=
b->Y()) {
1541 return (a->Y() > b->Y());
1543 if (
a->Z() !=
b->Z()) {
1544 return (a->Z() > b->Z());
1546 return a->QPt() >
b->QPt();
1548 return (
a->X() >
b->X());
1553 if (
Param().rec.tpc.dropLoopers &&
leg > 0) {
1558 trackCluster trackClusters[kMaxClusters];
1560 for (int32_t ipart = 0; ipart < nParts; ipart++) {
1562 CADEBUG(printf(
"Collect Track %d Part %d QPt %f DzDs %f\n", mMemory->nOutputTracks, ipart, t->QPt(), t->DzDs()));
1563 int32_t nTrackHits = t->NClusters();
1564 trackCluster*
c2 = trackClusters + nHits + nTrackHits - 1;
1565 for (int32_t
i = 0;
i < nTrackHits;
i++,
c2--) {
1566 const GPUTPCTracker& trk = GetConstantMem()->tpcTrackers[t->Sector()];
1567 const GPUTPCHitId& ic = trk.TrackHits()[t->OrigTrack()->FirstHitID() +
i];
1568 uint32_t
id = trk.Data().ClusterDataIndex(trk.Data().Row(ic.RowIndex()), ic.HitIndex()) + GetConstantMem()->ioPtrs.clustersNative->clusterOffset[t->Sector()][0];
1569 *
c2 = trackCluster{
id, (
uint8_t)ic.RowIndex(), t->Sector(), t->Leg()};
1571 nHits += nTrackHits;
1579 for (int32_t
i = 1;
i < nHits;
i++) {
1580 if (trackClusters[
i].
row > trackClusters[
i - 1].
row || trackClusters[
i].
id == trackClusters[
i - 1].
id) {
1586 int32_t firstTrackIndex = 0;
1587 int32_t lastTrackIndex = nParts - 1;
1589 int32_t nTmpHits = 0;
1590 trackCluster trackClustersUnsorted[kMaxClusters];
1591 int16_t clusterIndices[kMaxClusters];
1592 for (int32_t
i = 0;
i < nHits;
i++) {
1593 trackClustersUnsorted[
i] = trackClusters[
i];
1594 clusterIndices[
i] =
i;
1601 for (int32_t
i = 0;
i < nParts;
i++) {
1602 if (trackParts[
i]->Leg() == 0 || trackParts[
i]->Leg() ==
leg) {
1604 if (
Param().par.earlyTpcTransform) {
1605 zt = CAMath::Min(CAMath::Abs(trackParts[
i]->ClusterZT0()), CAMath::Abs(trackParts[
i]->ClusterZTN()));
1607 zt = -trackParts[
i]->MinClusterZT();
1611 baseLeg = trackParts[
i]->Leg();
1615 int32_t iLongest = 1e9;
1617 for (int32_t
i = (baseLeg ? (nParts - 1) : 0); baseLeg ? (
i >= 0) : (
i < nParts); baseLeg ?
i-- :
i++) {
1618 if (trackParts[
i]->Leg() != baseLeg) {
1621 if (trackParts[
i]->OrigTrack()->NHits() >
length) {
1623 length = trackParts[
i]->OrigTrack()->NHits();
1627 if (
Param().par.earlyTpcTransform) {
1628 outwards = (trackParts[iLongest]->ClusterZT0() > trackParts[iLongest]->ClusterZTN()) ^ trackParts[iLongest]->CSide();
1630 outwards = trackParts[iLongest]->ClusterZT0() < trackParts[iLongest]->ClusterZTN();
1632 GPUTPCGMMerger_CompareClusterIdsLooper::clcomparestruct clusterSort[kMaxClusters];
1633 for (int32_t iPart = 0; iPart < nParts; iPart++) {
1635 int32_t nTrackHits = t->NClusters();
1636 for (int32_t
j = 0;
j < nTrackHits;
j++) {
1637 int32_t
i = nTmpHits +
j;
1638 clusterSort[
i].leg = t->Leg();
1640 nTmpHits += nTrackHits;
1643 GPUCommonAlgorithm::sort(clusterIndices, clusterIndices + nHits, GPUTPCGMMerger_CompareClusterIdsLooper(baseLeg,
outwards, trackClusters, clusterSort));
1645 GPUCommonAlgorithm::sort(clusterIndices, clusterIndices + nHits, GPUTPCGMMerger_CompareClusterIds(trackClusters));
1648 firstTrackIndex = lastTrackIndex = -1;
1649 for (int32_t
i = 0;
i < nParts;
i++) {
1650 nTmpHits += trackParts[
i]->NClusters();
1651 if (nTmpHits > clusterIndices[0] && firstTrackIndex == -1) {
1652 firstTrackIndex =
i;
1654 if (nTmpHits > clusterIndices[nHits - 1] && lastTrackIndex == -1) {
1659 int32_t nFilteredHits = 0;
1660 int32_t indPrev = -1;
1661 for (int32_t
i = 0;
i < nHits;
i++) {
1662 int32_t ind = clusterIndices[
i];
1663 if (indPrev >= 0 && trackClustersUnsorted[ind].
id == trackClustersUnsorted[indPrev].
id) {
1667 trackClusters[nFilteredHits] = trackClustersUnsorted[ind];
1670 nHits = nFilteredHits;
1673 const uint32_t iOutTrackFirstCluster = CAMath::AtomicAdd(&mMemory->nOutputTrackClusters, (uint32_t)nHits);
1674 if (iOutTrackFirstCluster >= mNMaxOutputTrackClusters) {
1675 raiseError(GPUErrors::ERROR_MERGER_HIT_OVERFLOW, iOutTrackFirstCluster, mNMaxOutputTrackClusters);
1676 CAMath::AtomicExch(&mMemory->nOutputTrackClusters, mNMaxOutputTrackClusters);
1682 for (int32_t
i = 0;
i < nHits;
i++) {
1684 if (
Param().par.earlyTpcTransform) {
1685 const GPUTPCClusterData&
c = GetConstantMem()->tpcTrackers[trackClusters[
i].sector].ClusterData()[trackClusters[
i].id - GetConstantMem()->tpcTrackers[trackClusters[
i].sector].Data().ClusterIdOffset()];
1690 clXYZ[
i].
amp =
c.amp;
1691#ifdef GPUCA_TPC_RAW_PROPAGATE_PAD_ROW_TIME
1692 clXYZ[
i].pad =
c.mPad;
1693 clXYZ[
i].time =
c.mTime;
1697 const ClusterNative&
c = GetConstantMem()->ioPtrs.clustersNative->clustersLinear[trackClusters[
i].id];
1701 cl[
i].
row = trackClusters[
i].row;
1702 cl[
i].
num = trackClusters[
i].id;
1703 cl[
i].
sector = trackClusters[
i].sector;
1704 cl[
i].
leg = trackClusters[
i].leg;
1707 uint32_t iOutputTrack = CAMath::AtomicAdd(&mMemory->nOutputTracks, 1u);
1708 if (iOutputTrack >= mNMaxTracks) {
1709 raiseError(GPUErrors::ERROR_MERGER_TRACK_OVERFLOW, iOutputTrack, mNMaxTracks);
1710 CAMath::AtomicExch(&mMemory->nOutputTracks, mNMaxTracks);
1716 mergedTrack.SetFlags(0);
1717 mergedTrack.SetOK(1);
1718 mergedTrack.SetLooper(
leg > 0);
1719 mergedTrack.SetLegs(
leg);
1720 mergedTrack.SetNClusters(nHits);
1721 mergedTrack.SetFirstClusterRef(iOutTrackFirstCluster);
1724 mergedTrack.SetCSide(
p2.CSide());
1727 const float toX =
Param().par.earlyTpcTransform ? mClustersXYZ[iOutTrackFirstCluster].x : GPUTPCGeometry::Row2X(cl[0].
row);
1730 p1.Y() =
b.Par()[0];
1731 p1.Z() =
b.Par()[1];
1732 p1.SinPhi() =
b.Par()[2];
1737 p1.SinPhi() =
p2.SinPhi();
1739 p1.TZOffset() =
p2.TZOffset();
1740 p1.DzDs() =
p2.DzDs();
1741 p1.QPt() =
p2.QPt();
1742 mergedTrack.SetAlpha(
p2.Alpha());
1743 if (CAMath::Abs(
Param().polynomialField.GetNominalBz()) < (0.013f * gpu_common_constants::kCLight)) {
1744 p1.QPt() = 100.f /
Param().rec.bz0Pt10MeV;
1757 if (
Param().par.earlyTpcTransform) {
1759 CEside = (mergedTrack.CSide() != 0) ^ (clXYZ[0].
z > clXYZ[nHits - 1].
z);
1761 auto& cls = mConstantMem->ioPtrs.clustersNative->clustersLinear;
1762 CEside = cls[cl[0].
num].getTime() < cls[cl[nHits - 1].
num].getTime();
1764 MergeCEFill(trackParts[CEside ? lastTrackIndex : firstTrackIndex], cl[CEside ? (nHits - 1) : 0],
Param().par.earlyTpcTransform ? &(mClustersXYZ + iOutTrackFirstCluster)[CEside ? (nHits - 1) : 0] : nullptr, iOutputTrack);
1769GPUd()
void GPUTPCGMMerger::SortTracksPrepare(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread)
1771 for (uint32_t
i = iBlock * nThreads + iThread;
i < mMemory->nOutputTracks;
i += nThreads * nBlocks) {
1772 mTrackOrderProcess[
i] =
i;
1776GPUd()
void GPUTPCGMMerger::PrepareClustersForFit0(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread)
1778 for (uint32_t
i = iBlock * nThreads + iThread;
i < mMemory->nOutputTracks;
i += nBlocks * nThreads) {
1783#if defined(GPUCA_SPECIALIZE_THRUST_SORTS) && !defined(GPUCA_GPUCODE_COMPILEKERNELS)
1788struct GPUTPCGMMergerSortTracks_comp {
1791 GPUd() bool operator()(const int32_t
aa, const int32_t
bb)
1795 if (
a.CCE() !=
b.CCE()) {
1796 return a.CCE() >
b.CCE();
1798 if (
a.Legs() !=
b.Legs()) {
1799 return a.Legs() >
b.Legs();
1802 if (
a.NClusters() !=
b.NClusters()) {
1803 return a.NClusters() > b.NClusters();
1804 }
if (CAMath::Abs(
a.GetParam().GetQPt()) != CAMath::Abs(
b.GetParam().GetQPt())) {
1805 return CAMath::Abs(a.GetParam().GetQPt()) > CAMath::Abs(b.GetParam().GetQPt());
1806 }
if (
a.GetParam().GetY() !=
b.GetParam().GetY()) {
1807 return a.GetParam().GetY() > b.GetParam().GetY();
1811 return a.NClusters() >
b.NClusters();
1816struct GPUTPCGMMergerSortTracksQPt_comp {
1819 GPUd() bool operator()(const int32_t
aa, const int32_t
bb)
1825 return CAMath::Abs(
a.GetParam().GetQPt()) > CAMath::Abs(
b.GetParam().GetQPt());
1826 }
if (
a.GetParam().GetY() !=
b.GetParam().GetY()) {
1827 return a.GetParam().GetY() >
b.GetParam().GetY();
1829 return a.GetParam().GetZ() >
b.GetParam().GetZ();
1831 return CAMath::Abs(
a.GetParam().GetQPt()) > CAMath::Abs(
b.GetParam().GetQPt());
1841 GPUCommonAlgorithm::sortOnDevice(
this, _xyz.x.stream, mProcessorsShadow->tpcMerger.TrackOrderProcess(), processors()->tpcMerger.NOutputTracks(), GPUTPCGMMergerSortTracks_comp(mProcessorsShadow->tpcMerger.OutputTracks()));
1847 GPUCommonAlgorithm::sortOnDevice(
this, _xyz.x.stream, mProcessorsShadow->tpcMerger.TrackSort(), processors()->tpcMerger.NOutputTracks(), GPUTPCGMMergerSortTracksQPt_comp(mProcessorsShadow->tpcMerger.OutputTracks()));
1851GPUd()
void GPUTPCGMMerger::SortTracks(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread)
1853#ifndef GPUCA_SPECIALIZE_THRUST_SORTS
1854 if (iThread || iBlock) {
1858 auto comp = [
cmp = mOutputTracks](
const int32_t
aa,
const int32_t
bb) {
1861 if (
a.CCE() !=
b.CCE()) {
1862 return a.CCE() >
b.CCE();
1864 if (
a.Legs() !=
b.Legs()) {
1865 return a.Legs() >
b.Legs();
1868 if (
a.NClusters() !=
b.NClusters()) {
1869 return a.NClusters() > b.NClusters();
1870 }
if (CAMath::Abs(
a.GetParam().GetQPt()) != CAMath::Abs(
b.GetParam().GetQPt())) {
1871 return CAMath::Abs(a.GetParam().GetQPt()) > CAMath::Abs(b.GetParam().GetQPt());
1872 }
if (
a.GetParam().GetY() !=
b.GetParam().GetY()) {
1873 return a.GetParam().GetY() > b.GetParam().GetY();
1877 return a.NClusters() >
b.NClusters();
1881 GPUCommonAlgorithm::sortDeviceDynamic(mTrackOrderProcess, mTrackOrderProcess + mMemory->nOutputTracks, comp);
1885GPUd()
void GPUTPCGMMerger::SortTracksQPt(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread)
1887#ifndef GPUCA_SPECIALIZE_THRUST_SORTS
1888 if (iThread || iBlock) {
1892 auto comp = [
cmp = mOutputTracks](
const int32_t
aa,
const int32_t
bb) {
1897 return CAMath::Abs(
a.GetParam().GetQPt()) > CAMath::Abs(
b.GetParam().GetQPt());
1898 }
if (
a.GetParam().GetY() !=
b.GetParam().GetY()) {
1899 return a.GetParam().GetY() >
b.GetParam().GetY();
1901 return a.GetParam().GetZ() >
b.GetParam().GetZ();
1903 return CAMath::Abs(
a.GetParam().GetQPt()) > CAMath::Abs(
b.GetParam().GetQPt());
1907 GPUCommonAlgorithm::sortDeviceDynamic(mTrackSort, mTrackSort + mMemory->nOutputTracks, comp);
1911GPUd()
void GPUTPCGMMerger::PrepareClustersForFit1(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread)
1913 for (uint32_t
i = iBlock * nThreads + iThread;
i < mMemory->nOutputTracks;
i += nBlocks * nThreads) {
1914 mTrackOrderAttach[mTrackSort[
i]] =
i;
1917 for (uint32_t
j = 0;
j < trk.NClusters();
j++) {
1919 CAMath::AtomicAdd(&mSharedCount[mClusters[trk.FirstClusterRef() +
j].num], 1u);
1925GPUd()
void GPUTPCGMMerger::PrepareClustersForFit2(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread)
1927 for (uint32_t
i = iBlock * nThreads + iThread;
i < mMemory->nOutputTrackClusters;
i += nBlocks * nThreads) {
1928 if (mSharedCount[mClusters[
i].
num] > 1) {
1932 if (mClusterStateExt) {
1933 for (uint32_t
i = iBlock * nThreads + iThread;
i < mNMaxClusters;
i += nBlocks * nThreads) {
1934 uint8_t state = GetConstantMem()->ioPtrs.clustersNative->clustersLinear[
i].getFlags();
1935 if (mSharedCount[
i] > 1) {
1938 mClusterStateExt[
i] =
state;
1945 for (uint32_t
i = iBlock * nThreads + iThread;
i < mMemory->nOutputTracks;
i += nThreads * nBlocks) {
1946 mTrackSort[mTrackOrderAttach[
i]] =
i;
1948 for (uint32_t
i = iBlock * nThreads + iThread;
i < mMemory->nOutputTrackClusters;
i += nThreads * nBlocks) {
1949 mClusterAttachment[mClusters[
i].num] = 0;
1955 for (uint32_t
i = iBlock * nThreads + iThread;
i < mMemory->nOutputTracks;
i += nThreads * nBlocks) {
1957 if (!trk.OK() || trk.NClusters() == 0) {
1960 uint8_t goodLeg = mClusters[trk.FirstClusterRef() + trk.NClusters() - 1].leg;
1961 for (uint32_t
j = 0;
j < trk.NClusters();
j++) {
1962 int32_t
id = mClusters[trk.FirstClusterRef() +
j].num;
1964 uint8_t clusterState = mClusters[trk.FirstClusterRef() +
j].state;
1970 if (mClusters[trk.FirstClusterRef() +
j].leg == goodLeg) {
1973 CAMath::AtomicMax(&mClusterAttachment[
id],
weight);
1980 for (uint32_t
i = iBlock * nThreads + iThread;
i < mNMaxClusters;
i += nThreads * nBlocks) {
1981 if (mClusterAttachment[
i] != 0) {
1987GPUd()
void GPUTPCGMMerger::MergeLoopersInit(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread)
1989 const float lowPtThresh =
Param().rec.tpc.rejectQPtB5 * 1.1f;
1991 const auto& trk = mOutputTracks[
i];
1992 const auto& p = trk.GetParam();
1993 const float qptabs = CAMath::Abs(p.GetQPt());
1994 if (trk.NClusters() && qptabs *
Param().qptB5Scaler > 5.f && qptabs *
Param().qptB5Scaler <= lowPtThresh) {
1995 const int32_t sector = mClusters[trk.FirstClusterRef() + trk.NClusters() - 1].sector;
1996 const float refz = p.GetZ() + (
Param().par.earlyTpcTransform ? p.GetTZOffset() : GetConstantMem()->calibObjects.fastTransformHelper->getCorrMap()->convVertexTimeToZOffset(sector, p.GetTZOffset(),
Param().continuousMaxTimeBin)) + (trk.CSide() ? -100 : 100);
1998 CAMath::SinCos(trk.GetAlpha(), sinA, cosA);
1999 float gx = cosA * p.GetX() - sinA * p.GetY();
2000 float gy = cosA * p.GetY() + sinA * p.GetX();
2001 float bz =
Param().polynomialField.GetFieldBz(gx, gy, p.GetZ());
2002 const float r1 = p.GetQPt() * bz;
2003 const float r = CAMath::Abs(r1) > 0.0001f ? (1.f / r1) : 10000;
2004 const float mx = p.GetX() +
r * p.GetSinPhi();
2005 const float my = p.GetY() -
r * CAMath::Sqrt(1 - p.GetSinPhi() * p.GetSinPhi());
2006 const float gmx = cosA * mx - sinA * my;
2007 const float gmy = cosA * my + sinA * mx;
2008 uint32_t myId = CAMath::AtomicAdd(&mMemory->nLooperMatchCandidates, 1u);
2009 if (myId >= mNMaxLooperMatches) {
2010 raiseError(GPUErrors::ERROR_LOOPER_MATCH_OVERFLOW, myId, mNMaxLooperMatches);
2011 CAMath::AtomicExch(&mMemory->nLooperMatchCandidates, mNMaxLooperMatches);
2039GPUd()
void GPUTPCGMMerger::MergeLoopersSort(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread)
2041#ifndef GPUCA_SPECIALIZE_THRUST_SORTS
2042 if (iThread || iBlock) {
2046 GPUCommonAlgorithm::sortDeviceDynamic(mLooperCandidates, mLooperCandidates + mMemory->nLooperMatchCandidates, comp);
2050#if defined(GPUCA_SPECIALIZE_THRUST_SORTS) && !defined(GPUCA_GPUCODE_COMPILEKERNELS)
2055struct GPUTPCGMMergerMergeLoopers_comp {
2058 return CAMath::Abs(
a.refz) < CAMath::Abs(
b.refz);
2067 GPUCommonAlgorithm::sortOnDevice(
this, _xyz.x.stream, mProcessorsShadow->tpcMerger.LooperCandidates(), processors()->tpcMerger.Memory()->nLooperMatchCandidates, GPUTPCGMMergerMergeLoopers_comp());
2071GPUd()
void GPUTPCGMMerger::MergeLoopersMain(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread)
2075#if GPUCA_MERGE_LOOPER_MC && !defined(GPUCA_GPUCODE)
2076 std::vector<int64_t> paramLabels(mMemory->nLooperMatchCandidates);
2077 for (uint32_t
i = 0;
i < mMemory->nLooperMatchCandidates;
i++) {
2078 paramLabels[
i] = GetTrackLabel(mOutputTracks[
params[
i].
id]);
2084 if (!mRec->GetProcessingSettings().runQA) {
2085 throw std::runtime_error(
"Need QA enabled for the Merge Loopers MC QA");
2090 for (uint32_t
j =
i + 1;
j < mMemory->nLooperMatchCandidates;
j++) {
2092 if (CAMath::Abs(
params[
j].refz) > CAMath::Abs(
params[
i].refz) + 100.f) {
2100 const auto& trk1 = mOutputTracks[
params[
i].id];
2101 const auto& trk2 = mOutputTracks[
params[
j].id];
2102 const auto& param1 = trk1.GetParam();
2103 const auto& param2 = trk2.GetParam();
2104 if (CAMath::Abs(param1.GetDzDs()) > 0.03f && CAMath::Abs(param2.GetDzDs()) > 0.03f && param1.GetDzDs() * param2.GetDzDs() * param1.GetQPt() * param2.GetQPt() < 0) {
2109 const float dznormalized = (CAMath::Abs(
params[
j].refz) - CAMath::Abs(
params[
i].refz)) / (CAMath::TwoPi() * 0.5f * (CAMath::Abs(param1.GetDzDs()) + CAMath::Abs(param2.GetDzDs())) * 1.f / (0.5f * (CAMath::Abs(param1.GetQPt()) + CAMath::Abs(param2.GetQPt())) * CAMath::Abs(
Param().polynomialField.GetNominalBz())));
2110 const float phasecorr = CAMath::Modf((CAMath::ASin(param1.GetSinPhi()) + trk1.GetAlpha() - CAMath::ASin(param2.GetSinPhi()) - trk2.GetAlpha()) / CAMath::TwoPi() + 5.5f, 1.f) - 0.5f;
2111 const float phasecorrdirection = (
params[
j].refz * param1.GetQPt() * param1.GetDzDs()) > 0 ? 1 : -1;
2112 const float dzcorr = dznormalized + phasecorr * phasecorrdirection;
2113 const bool sameside = !(trk1.CSide() ^ trk2.CSide());
2114 const float dzcorrlimit[4] = {sameside ? 0.018f : 0.012f, sameside ? 0.12f : 0.025f, 0.14f, 0.15f};
2115 const int32_t dzcorrcount = sameside ? 4 : 2;
2116 bool dzcorrok =
false;
2118 for (int32_t k = 0; k < dzcorrcount; k++) {
2119 const float d = CAMath::Abs(dzcorr - 0.5f * k);
2120 if (d <= dzcorrlimit[k]) {
2122 dznorm = d / dzcorrlimit[k];
2131 const float dtgl = param1.GetDzDs() - (param1.GetQPt() * param2.GetQPt() > 0 ? param2.GetDzDs() : -param2.GetDzDs());
2132 const float dqpt = (CAMath::Abs(param1.GetQPt()) - CAMath::Abs(param2.GetQPt())) / CAMath::Min(param1.GetQPt(), param2.GetQPt());
2133 float d = CAMath::Sum2(dtgl * (1.f / 0.03f), dqpt * (1.f / 0.04f)) + d2xy * (1.f / 4.f) + dznorm * (1.f / 0.3f);
2135#if GPUCA_MERGE_LOOPER_MC && !defined(GPUCA_GPUCODE)
2136 const int64_t label1 = paramLabels[
i];
2137 const int64_t label2 = paramLabels[
j];
2138 bool labelEQ = label1 != -1 && label1 == label2;
2139 if (1 || EQ || labelEQ) {
2141 static auto& tup =
GPUROOTDump<TNtuple>::get(
"mergeloopers",
"labeleq:sides:d2xy:tgl1:tgl2:qpt1:qpt2:dz:dzcorr:dtgl:dqpt:dznorm:bs");
2142 tup.Fill((
float)labelEQ, (trk1.CSide() ? 1 : 0) | (trk2.CSide() ? 2 : 0), d2xy, param1.GetDzDs(), param2.GetDzDs(), param1.GetQPt(), param2.GetQPt(),
CAMath::
Abs(
params[
j].refz) -
CAMath::
Abs(
params[
i].refz), dzcorr, dtgl, dqpt, dznorm, bs);
2143 static auto tup2 =
GPUROOTDump<TNtuple>::getNew(
"mergeloopers2",
"labeleq:refz1:refz2:tgl1:tgl2:qpt1:qpt2:snp1:snp2:a1:a2:dzn:phasecor:phasedir:dzcorr");
2144 tup2.Fill((
float)labelEQ,
params[
i].refz,
params[
j].refz, param1.GetDzDs(), param2.GetDzDs(), param1.GetQPt(), param2.GetQPt(), param1.GetSinPhi(), param2.GetSinPhi(), trk1.GetAlpha(), trk2.GetAlpha(), dznormalized, phasecorr, phasecorrdirection, dzcorr);
2158 mOutputTracks[
params[
j].id].SetMergedLooper(
true);
2159 if (CAMath::Abs(param2.GetQPt() *
Param().qptB5Scaler) >=
Param().
rec.tpc.rejectQPtB5) {
2160 mOutputTracks[
params[
i].id].SetMergedLooper(
true);
Class of a TPC cluster in TPC-native coordinates (row, time)
A const (ready only) version of MCTruthContainer.
#define get_global_size(dim)
#define get_global_id(dim)
#define GPUCA_DEBUG_STREAMER_CHECK(...)
#define GPUCA_DETERMINISTIC_CODE(det, indet)
#define GPUCA_MERGER_MAX_TRACK_CLUSTERS
#define GPUCA_MAX_SIN_PHI_LOW
#define GPUCA_TRACKLET_SELECTOR_MIN_HITS_B5(QPTB5)
#define GPUCA_MAX_SIN_PHI
#define GPUCA_M_CAT3(...)
#define CADEBUG2(cmd,...)
const GPUTPCGMMerger::trackCluster & b1
const GPUTPCGMMerger::trackCluster & a1
const GPUTPCGMMerger::trackCluster *const mCmp
const clcomparestruct *const cmp2
const GPUTPCGMMerger::trackCluster *const cmp1
bool const GPUTPCGMMerger::trackCluster * c1
bool const GPUTPCGMMerger::trackCluster const clcomparestruct * c2
constexpr int p1()
constexpr to accelerate the coordinates changing
std::array< int, 64 > reverse(std::array< int, 64 > a)
Class for time synchronization of RawReader instances.
static void computePointerWithAlignment(T *&basePtr, S *&objPtr, size_t nEntries=1)
void AllocateAndInitializeLate()
static GPUROOTDump< T, Args... > getNew(const char *name1, Names... names)
static GPUROOTDump< T, Args... > & get(const char *name1, Names... names)
const GPUParam & GetParam() const
int16_t RegisterMemoryAllocation(T *proc, void *(T::*setPtr)(void *), int32_t type, const char *name="", const GPUMemoryReuse &re=GPUMemoryReuse())
RecoStepField GetRecoSteps() const
const GPUConstantMem & GetConstantMem() const
GPUMemorySizeScalers * MemoryScalers()
const GPUSettingsProcessing & GetProcessingSettings() const
void * SetPointersRefitScratch(void *mem)
void RegisterMemoryAllocation()
void * SetPointersMemory(void *mem)
static constexpr const int32_t NSECTORS
void * SetPointersOutput(void *mem)
void InitializeProcessor()
void * SetPointersOutputO2MC(void *mem)
void * SetPointersOutputO2Scratch(void *mem)
void * SetPointersMerger(void *mem)
void * SetPointersOutputO2Clus(void *mem)
void * SetPointersOutputState(void *mem)
void SetMaxData(const GPUTrackingInOutPointers &io)
void * SetPointersOutputO2(void *mem)
int32_t int32_t int32_t bool float float Z
int32_t int32_t int32_t bool float Y
GLint GLint GLsizei GLint border
GLfloat GLfloat GLfloat alpha
GLuint GLuint GLfloat weight
GLboolean GLboolean GLboolean b
GLenum const GLfloat * params
GLuint GLsizei GLsizei * length
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)
GLboolean GLboolean GLboolean GLboolean a
GLdouble GLdouble GLdouble z
uint8_t itsSharedClusterMap uint8_t
GPUd() const expr uint32_t MultivariatePolynomialHelper< Dim
float float float float z1
if(!okForPhiMin(phi0, phi1))
Global TPC definitions and constants.
@ streamMergeBorderTracksBest
stream MergeBorderTracks best track
@ streamMergeBorderTracksAll
stream MergeBorderTracks all tracks
std::string getTime(uint64_t ts)
GPUTPCTracker tpcTrackers[GPUCA_NSECTORS]
size_t getValue(size_t maxVal, size_t val)
size_t NTPCMergedTrackHits(size_t tpcSectorTrackHitss)
size_t NTPCMergedTracks(size_t tpcSectorTracks)
@ clustererAndSharedFlags
const o2::tpc::ClusterNativeAccess * clustersNative
unsigned int nClustersTotal
char const *restrict const cmp