94GPUTRDTracker_t<TRDTRK, PROP>::GPUTRDTracker_t() : mR(nullptr), mIsInitialized(false), mGenerateSpacePoints(false), mProcessPerTimeFrame(false), mNAngleHistogramBins(25), mAngleHistogramRange(50), mMemoryPermanent(-1), mMemoryTracklets(-1), mMemoryTracks(-1), mNMaxCollisions(0), mNMaxTracks(0), mNMaxSpacePoints(0), mTracks(nullptr), mTrackAttribs(nullptr), mNCandidates(1), mNTracks(0), mNEvents(0), mMaxBackendThreads(100), mTrackletIndexArray(nullptr), mHypothesis(nullptr), mCandidates(nullptr), mSpacePoints(nullptr), mGeo(nullptr), mRPhiA2(0), mRPhiB(0), mRPhiC2(0), mDyA2(0), mDyB(0), mDyC2(0), mAngleToDyA(0), mAngleToDyB(0), mAngleToDyC(0), mDebugOutput(false), mMaxEta(0.84f), mRoadZ(18.f), mZCorrCoefNRC(1.4f), mTPCVdrift(2.58f), mTPCTDriftOffset(0.f), mDebug(new
GPUTRDTrackerDebug<TRDTRK>())
101template <
class TRDTRK,
class PROP>
110template <
class TRDTRK,
class PROP>
119 mDebug->ExpandVectors();
120 mIsInitialized =
true;
123template <
class TRDTRK,
class PROP>
129 mGeo = (
const GPUTRDGeometry*)GetConstantMem()->calibObjects.trdGeometry;
131 GPUFatal(
"TRD geometry must be provided externally");
133 float Bz =
Param().bzkG;
134 float resRPhiIdeal2 =
Param().rec.trd.trkltResRPhiIdeal *
Param().rec.trd.trkltResRPhiIdeal;
135 GPUInfo(
"Initializing with B-field: %f kG", Bz);
136 if (CAMath::Abs(CAMath::Abs(Bz) - 2) < 0.1f) {
139 GPUInfo(
"Loading error parameterization for Bz = +2 kG");
140 mRPhiA2 = resRPhiIdeal2, mRPhiB = -1.43e-2f, mRPhiC2 = 4.55e-2f;
141 mDyA2 = 1.225e-3f, mDyB = -9.8e-3f, mDyC2 = 3.88e-2f;
142 mAngleToDyA = -0.1f, mAngleToDyB = 1.89f, mAngleToDyC = -0.4f;
144 GPUInfo(
"Loading error parameterization for Bz = -2 kG");
145 mRPhiA2 = resRPhiIdeal2, mRPhiB = 1.43e-2f, mRPhiC2 = 4.55e-2f;
146 mDyA2 = 1.225e-3f, mDyB = 9.8e-3f, mDyC2 = 3.88e-2f;
147 mAngleToDyA = 0.1f, mAngleToDyB = 1.89f, mAngleToDyC = 0.4f;
149 }
else if (CAMath::Abs(CAMath::Abs(Bz) - 5) < 0.1f) {
152 GPUInfo(
"Loading error parameterization for Bz = +5 kG");
153 mRPhiA2 = resRPhiIdeal2, mRPhiB = 0.125f, mRPhiC2 = 0.0961f;
154 mDyA2 = 1.681e-3f, mDyB = 0.15f, mDyC2 = 0.1849f;
155 mAngleToDyA = 0.13f, mAngleToDyB = 2.43f, mAngleToDyC = -0.58f;
157 GPUInfo(
"Loading error parameterization for Bz = -5 kG");
158 mRPhiA2 = resRPhiIdeal2, mRPhiB = -0.14f, mRPhiC2 = 0.1156f;
159 mDyA2 = 2.209e-3f, mDyB = -0.15f, mDyC2 = 0.2025f;
160 mAngleToDyA = -0.15f, mAngleToDyB = 2.34f, mAngleToDyC = 0.56f;
165 GPUWarning(
"No error parameterization available for Bz = %.2f kG. Keeping default value (sigma_y = const. = 1cm)", Bz);
170 float x0[kNLayers] = {300.2f, 312.8f, 325.4f, 338.0f, 350.6f, 363.2f};
171 auto* matrix = mGeo->GetClusterMatrix(0);
172 float loc[3] = {mGeo->AnodePos(), 0.f, 0.f};
173 float glb[3] = {0.f, 0.f, 0.f};
174 for (int32_t iDet = 0; iDet < kNChambers; ++iDet) {
175 matrix = mGeo->GetClusterMatrix(iDet);
177 mR[iDet] =
x0[mGeo->GetLayer(iDet)];
180 matrix->LocalToMaster(loc, glb);
185template <
class TRDTRK,
class PROP>
194template <
class TRDTRK,
class PROP>
202 for (uint32_t iColl = 0; iColl < GetConstantMem()->ioPtrs.nTRDTriggerRecords; ++iColl) {
203 if (GetConstantMem()->ioPtrs.trdTrigRecMask && GetConstantMem()->ioPtrs.trdTrigRecMask[iColl] == 0) {
208 int32_t idxOffset = 0;
209 if (mProcessPerTimeFrame) {
210 idxOffset = GetConstantMem()->ioPtrs.trdTrackletIdxFirst[iColl];
211 nTrklts = (iColl < GetConstantMem()->ioPtrs.nTRDTriggerRecords - 1) ? GetConstantMem()->ioPtrs.trdTrackletIdxFirst[iColl + 1] - GetConstantMem()->ioPtrs.trdTrackletIdxFirst[iColl] : GetConstantMem()->ioPtrs.nTRDTracklets - GetConstantMem()->ioPtrs.trdTrackletIdxFirst[iColl];
213 nTrklts = GetConstantMem()->ioPtrs.nTRDTracklets;
216 int32_t* trkltIndexArray = &mTrackletIndexArray[iColl * (kNChambers + 1) + 1];
217 trkltIndexArray[-1] = 0;
220 int32_t trkltCounter = 0;
221 for (int32_t iTrklt = 0; iTrklt < nTrklts; ++iTrklt) {
222 if (
tracklets[iTrklt].GetDetector() > currDet) {
223 nextDet =
tracklets[iTrklt].GetDetector();
224 for (int32_t iDet = currDet; iDet < nextDet; ++iDet) {
225 trkltIndexArray[iDet] = trkltCounter;
231 for (int32_t iDet = currDet; iDet <= kNChambers; ++iDet) {
232 trkltIndexArray[iDet] = trkltCounter;
234 if (mGenerateSpacePoints) {
235 if (!CalculateSpacePoints(iColl)) {
236 GPUError(
"Space points for at least one chamber could not be calculated (for interaction %i)", iColl);
241 if (mGenerateSpacePoints) {
247template <
class TRDTRK,
class PROP>
253 if (!mIsInitialized) {
256 GPUError(
"Cannot change mNCandidates after initialization");
260template <
class TRDTRK,
class PROP>
266 GPUInfo(
"##############################################################");
267 GPUInfo(
"Current settings for GPU TRD tracker:");
268 GPUInfo(
" maxChi2(%.2f), chi2Penalty(%.2f), nCandidates(%i), maxMissingLayers(%i)",
Param().
rec.trd.maxChi2,
Param().
rec.trd.penaltyChi2, mNCandidates,
Param().
rec.trd.stopTrkAfterNMissLy);
269 GPUInfo(
" ptCut = %.2f GeV, abs(eta) < %.2f",
Param().
rec.trd.minTrackPt, mMaxEta);
270 GPUInfo(
"##############################################################");
273template <
class TRDTRK,
class PROP>
276 mDebug->CreateStreamer();
284 return &
Param().polynomialField;
287template <
class TRDTRK,
class PROP>
290 return GetConstantMem()->calibObjects.o2Propagator;
293template <
class TRDTRK,
class PROP>
296 if (!trk.CheckNumericalQuality()) {
299 if (CAMath::Abs(trk.getEta()) > mMaxEta) {
302 if (trk.getPt() <
Param().
rec.trd.minTrackPt) {
308template <
class TRDTRK,
class PROP>
309GPUd() int32_t
GPUTRDTracker_t<TRDTRK, PROP>::LoadTrack(const TRDTRK& trk, uint32_t tpcTrackId,
bool checkTrack, HelperTrackAttributes* attribs)
311 if (mNTracks >= mNMaxTracks) {
313 GPUError(
"Error: Track dropped (no memory available) -> must not happen");
317 if (checkTrack && !CheckTrackTRDCandidate(trk)) {
320 mTracks[mNTracks] = trk;
321 mTracks[mNTracks].setRefGlobalTrackIdRaw(tpcTrackId);
323 mTrackAttribs[mNTracks] = *attribs;
329template <
class TRDTRK,
class PROP>
335 GPUInfo(
"There are in total %i tracklets loaded", GetConstantMem()->ioPtrs.nTRDTracklets);
336 GPUInfo(
"There are %i tracks loaded. mNMaxTracks(%i)", mNTracks, mNMaxTracks);
337 for (int32_t
i = 0;
i < mNTracks; ++
i) {
338 auto* trk = &(mTracks[
i]);
339 GPUInfo(
"track %i: x=%f, alpha=%f, nTracklets=%i, pt=%f, time=%f",
i, trk->getX(), trk->getAlpha(), trk->getNtracklets(), trk->getPt(), mTrackAttribs[
i].mTime);
343template <
class TRDTRK,
class PROP>
344GPUd() int32_t
GPUTRDTracker_t<TRDTRK, PROP>::GetCollisionIDs(int32_t iTrk, int32_t* collisionIds)
const
354 for (uint32_t iColl = 0; iColl < GetConstantMem()->ioPtrs.nTRDTriggerRecords; ++iColl) {
355 if (GetConstantMem()->ioPtrs.trdTrigRecMask && GetConstantMem()->ioPtrs.trdTrigRecMask[iColl] == 0) {
358 if (GetConstantMem()->ioPtrs.trdTriggerTimes[iColl] > mTrackAttribs[iTrk].GetTimeMin() && GetConstantMem()->ioPtrs.trdTriggerTimes[iColl] < mTrackAttribs[iTrk].GetTimeMax()) {
360 GPUError(
"Found too many collision candidates for track with tMin(%f) and tMax(%f)", mTrackAttribs[iTrk].GetTimeMin(), mTrackAttribs[iTrk].GetTimeMax());
363 collisionIds[nColls++] = iColl;
369template <
class TRDTRK,
class PROP>
375 int32_t collisionIds[20] = {0};
376 int32_t nCollisionIds = 1;
377 if (mProcessPerTimeFrame) {
378 nCollisionIds = GetCollisionIDs(iTrk, collisionIds);
379 if (nCollisionIds == 0) {
381 GPUInfo(
"Did not find TRD data for track %i with t=%f. tMin(%f), tMax(%f)", iTrk, mTrackAttribs[iTrk].mTime, mTrackAttribs[iTrk].GetTimeMin(), mTrackAttribs[iTrk].GetTimeMax());
387 PROP prop(getPropagatorParam());
388 mTracks[iTrk].setChi2(
Param().
rec.trd.penaltyChi2);
389 auto trkStart = mTracks[iTrk];
390 for (int32_t iColl = 0; iColl < nCollisionIds; ++iColl) {
392 auto trkCopy = trkStart;
393 prop.setTrack(&trkCopy);
394 prop.setFitInProjections(
true);
395 if (!FollowProlongation(&prop, &trkCopy, iTrk, threadId, collisionIds[iColl])) {
399 if (trkCopy.getReducedChi2() < mTracks[iTrk].getReducedChi2()) {
400 mTracks[iTrk] = trkCopy;
405template <
class TRDTRK,
class PROP>
414 int32_t idxOffset = iCollision * (kNChambers + 1);
418 for (int32_t iDet = 0; iDet < kNChambers; ++iDet) {
419 int32_t iFirstTrackletInDet = mTrackletIndexArray[idxOffset + iDet];
420 int32_t iFirstTrackletInNextDet = mTrackletIndexArray[idxOffset + iDet + 1];
421 int32_t nTrackletsInDet = iFirstTrackletInNextDet - iFirstTrackletInDet;
422 if (nTrackletsInDet == 0) {
425 if (!mGeo->ChamberInGeometry(iDet)) {
426 GPUError(
"Found TRD tracklets in chamber %i which is not included in the geometry", iDet);
429 auto* matrix = mGeo->GetClusterMatrix(iDet);
431 GPUError(
"No cluster matrix available for chamber %i. Skipping it...", iDet);
437 int32_t trkltIdxOffset = (mProcessPerTimeFrame) ? GetConstantMem()->ioPtrs.trdTrackletIdxFirst[iCollision] : 0;
438 int32_t trkltIdxStart = trkltIdxOffset + iFirstTrackletInDet;
439 for (int32_t trkltIdx = trkltIdxStart; trkltIdx < trkltIdxStart + nTrackletsInDet; ++trkltIdx) {
440 int32_t trkltZbin =
tracklets[trkltIdx].GetZbin();
441 float xTrkltDet[3] = {0.f};
442 float xTrkltSec[3] = {0.f};
443 xTrkltDet[0] = mGeo->AnodePos() + sRadialOffset;
444 xTrkltDet[1] =
tracklets[trkltIdx].GetY();
445 xTrkltDet[2] = pp->GetRowPos(trkltZbin) - pp->GetRowSize(trkltZbin) / 2.f - pp->GetRowPos(pp->GetNrows() / 2);
447 matrix->LocalToMaster(xTrkltDet, xTrkltSec);
448 mSpacePoints[trkltIdx].setX(xTrkltSec[0]);
449 mSpacePoints[trkltIdx].setY(xTrkltSec[1]);
450 mSpacePoints[trkltIdx].setZ(xTrkltSec[2]);
451 mSpacePoints[trkltIdx].setDy(
tracklets[trkltIdx].GetdY());
459template <
class TRDTRK,
class PROP>
460GPUd() bool
GPUTRDTracker_t<TRDTRK, PROP>::FollowProlongation(PROP* prop, TRDTRK* t, int32_t iTrk, int32_t threadId, int32_t collisionId)
470 GPUInfo(
"Start track following for track %i at x=%f with pt=%f", t->getRefGlobalTrackIdRaw(), t->getX(), t->getPt());
474 float zShiftTrk = 0.f;
475 if (mProcessPerTimeFrame) {
476 zShiftTrk = (mTrackAttribs[iTrk].mTime - GetConstantMem()->ioPtrs.trdTriggerTimes[collisionId]) * mTPCVdrift * mTrackAttribs[iTrk].mSide;
484 const GPUTRDSpacePoint* spacePoints = GetConstantMem()->ioPtrs.trdSpacePoints;
486#ifdef ENABLE_GPUTRDDEBUG
487 TRDTRK trackNoUp(*t);
490 int32_t candidateIdxOffset = threadId * 2 * mNCandidates;
491 int32_t hypothesisIdxOffset = threadId * mNCandidates;
492 int32_t trkltIdxOffset = collisionId * (kNChambers + 1);
493 int32_t glbTrkltIdxOffset = (mProcessPerTimeFrame) ? GetConstantMem()->ioPtrs.trdTrackletIdxFirst[collisionId] : 0;
496 if (mNCandidates > 1) {
498 mCandidates[candidateIdxOffset] = *t;
501 int32_t nCandidates = 1;
502 int32_t nCurrHypothesis = 0;
507 const int32_t nMaxChambersToSearch = 4;
509 mDebug->SetGeneralInfo(mNEvents, mNTracks, iTrk, t->getPt());
511 for (int32_t iLayer = 0; iLayer < kNLayers; ++iLayer) {
514 int32_t currIdx = candidateIdxOffset + iLayer % 2;
515 int32_t nextIdx = candidateIdxOffset + (iLayer + 1) % 2;
516 pad = mGeo->GetPadPlane(iLayer, 0);
517 float tilt = CAMath::Tan(CAMath::Pi() / 180.f * pad->GetTiltingAngle());
518 const float zMaxTRD = pad->GetRow0();
525 for (int32_t iCandidate = 0; iCandidate < nCandidates; iCandidate++) {
527 int32_t det[nMaxChambersToSearch] = {-1, -1, -1, -1};
529 if (mNCandidates > 1) {
530 trkWork = &mCandidates[2 * iCandidate + currIdx];
531 prop->setTrack(trkWork);
534 if (trkWork->getIsStopped()) {
535 Hypothesis hypo(trkWork->getNlayersFindable(), iCandidate, -1, trkWork->getChi2());
536 InsertHypothesis(hypo, nCurrHypothesis, hypothesisIdxOffset);
542 if (!prop->propagateToX(mR[2 * kNLayers + iLayer], .8f, 2.f)) {
544 GPUInfo(
"Track propagation failed for track %i candidate %i in layer %i (pt=%f, x=%f, mR[layer]=%f)", iTrk, iCandidate, iLayer, trkWork->getPt(), trkWork->getX(), mR[2 * kNLayers + iLayer]);
550 if (!AdjustSector(prop, trkWork)) {
552 GPUInfo(
"Adjusting sector failed for track %i candidate %i in layer %i", iTrk, iCandidate, iLayer);
558 if (IsGeoFindable(trkWork, iLayer, prop->getAlpha(), zShiftTrk)) {
559 trkWork->setIsFindable(iLayer);
563 roadY = 7.f * CAMath::Sqrt(trkWork->getSigmaY2() + 0.1f * 0.1f) +
Param().rec.trd.extraRoadY;
565 roadZ = mRoadZ +
Param().rec.trd.extraRoadZ;
567 if (CAMath::Abs(trkWork->getZ() + zShiftTrk) - roadZ >= zMaxTRD) {
569 GPUInfo(
"Track out of TRD acceptance with z=%f in layer %i (eta=%f)", trkWork->getZ() + zShiftTrk, iLayer, trkWork->getEta());
575 FindChambersInRoad(trkWork, roadY, roadZ, iLayer, det, zMaxTRD, prop->getAlpha(), zShiftTrk);
578 mDebug->SetTrackParameter(*trkWork, iLayer);
581 for (int32_t iDet = 0; iDet < nMaxChambersToSearch; iDet++) {
582 int32_t currDet = det[iDet];
586 pad = mGeo->GetPadPlane(currDet);
587 int32_t currSec = mGeo->GetSector(currDet);
588 if (currSec != GetSector(prop->getAlpha())) {
589 if (!prop->rotate(GetAlphaOfSector(currSec))) {
591 GPUWarning(
"Track could not be rotated in tracklet coordinate system");
596 if (currSec != GetSector(prop->getAlpha())) {
597 GPUError(
"Track is in sector %i and sector %i is searched for tracklets", GetSector(prop->getAlpha()), currSec);
601 if (!prop->propagateToX(mR[currDet], .8f, .2f)) {
603 GPUWarning(
"Track parameter for track %i, x=%f at chamber %i x=%f in layer %i cannot be retrieved", iTrk, trkWork->getX(), currDet, mR[currDet], iLayer);
607 for (int32_t trkltIdx = glbTrkltIdxOffset + mTrackletIndexArray[trkltIdxOffset + currDet]; trkltIdx < glbTrkltIdxOffset + mTrackletIndexArray[trkltIdxOffset + currDet + 1]; ++trkltIdx) {
608 if (CAMath::Abs(trkWork->getY() - spacePoints[trkltIdx].getY()) > roadY || CAMath::Abs(trkWork->getZ() + zShiftTrk - spacePoints[trkltIdx].getZ()) > roadZ) {
614 prop->getPropagatedYZ(spacePoints[trkltIdx].
getX(), projY, projZ);
616 float tiltCorr = tilt * (spacePoints[trkltIdx].getZ() - projZ);
617 float lPad = pad->GetRowSize(
tracklets[trkltIdx].GetZbin());
618 if (!((CAMath::Abs(spacePoints[trkltIdx].getZ() - projZ) < lPad) && (trkWork->getSigmaZ2() < (lPad * lPad / 12.f)))) {
622 float zPosCorr = spacePoints[trkltIdx].getZ() + mZCorrCoefNRC * trkWork->getTgl();
623 float yPosCorr = spacePoints[trkltIdx].getY() - tiltCorr;
624 zPosCorr -= zShiftTrk;
625 float deltaY = yPosCorr - projY;
626 float deltaZ = zPosCorr - projZ;
627 float trkltPosTmpYZ[2] = {yPosCorr, zPosCorr};
628 float trkltCovTmp[3] = {0.f};
629 if ((CAMath::Abs(deltaY) < roadY) && (CAMath::Abs(deltaZ) < roadZ)) {
631 RecalcTrkltCov(tilt, trkWork->getSnp(), pad->GetRowSize(
tracklets[trkltIdx].GetZbin()), trkltCovTmp);
632 float chi2 = prop->getPredictedChi2(trkltPosTmpYZ, trkltCovTmp);
634 if ((chi2 >
Param().
rec.trd.maxChi2) || (
Param().
rec.trd.applyDeflectionCut && CAMath::Abs(GetAngularPull(spacePoints[trkltIdx].getDy(), trkWork->getSnp())) > 4)) {
637 Hypothesis hypo(trkWork->getNlayersFindable(), iCandidate, trkltIdx, trkWork->getChi2() + chi2);
638 InsertHypothesis(hypo, nCurrHypothesis, hypothesisIdxOffset);
644 Hypothesis hypoNoUpdate(trkWork->getNlayersFindable(), iCandidate, -1, trkWork->getChi2() +
Param().
rec.trd.penaltyChi2);
645 InsertHypothesis(hypoNoUpdate, nCurrHypothesis, hypothesisIdxOffset);
649 mDebug->SetChi2Update(mHypothesis[0 + hypothesisIdxOffset].mChi2 - t->getChi2(), iLayer);
650 mDebug->SetRoad(roadY, roadZ, iLayer);
651 bool wasTrackStored =
false;
659 for (int32_t iUpdate = 0; iUpdate < nCurrHypothesis && iUpdate < mNCandidates; iUpdate++) {
660 if (mHypothesis[iUpdate + hypothesisIdxOffset].mCandidateId == -1) {
667 nCandidates = iUpdate + 1;
668 if (mNCandidates > 1) {
669 mCandidates[2 * iUpdate + nextIdx] = mCandidates[2 * mHypothesis[iUpdate + hypothesisIdxOffset].mCandidateId + currIdx];
670 trkWork = &mCandidates[2 * iUpdate + nextIdx];
672 if (mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId == -1) {
674 if (trkWork->getIsFindable(iLayer)) {
675 if (trkWork->getNmissingConsecLayers(iLayer) >
Param().
rec.trd.stopTrkAfterNMissLy) {
676 trkWork->setIsStopped();
678 trkWork->setChi2(trkWork->getChi2() +
Param().
rec.trd.penaltyChi2);
680 if (iUpdate == 0 && mNCandidates > 1) {
681 *t = mCandidates[2 * iUpdate + nextIdx];
686 if (mNCandidates > 1) {
687 prop->setTrack(trkWork);
689 int32_t trkltSec = mGeo->GetSector(
tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetDetector());
690 if (trkltSec != GetSector(prop->getAlpha())) {
692 prop->rotate(GetAlphaOfSector(trkltSec));
694 if (!prop->propagateToX(spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].getX(), .8f, 2.f)) {
696 GPUWarning(
"Final track propagation for track %i update %i in layer %i failed", iTrk, iUpdate, iLayer);
698 trkWork->setChi2(trkWork->getChi2() +
Param().
rec.trd.penaltyChi2);
699 if (trkWork->getIsFindable(iLayer)) {
700 if (trkWork->getNmissingConsecLayers(iLayer) >=
Param().
rec.trd.stopTrkAfterNMissLy) {
701 trkWork->setIsStopped();
704 if (iUpdate == 0 && mNCandidates > 1) {
705 *t = mCandidates[2 * iUpdate + nextIdx];
710 pad = mGeo->GetPadPlane(
tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetDetector());
711 float tiltCorrUp = tilt * (spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].getZ() - trkWork->getZ());
712 float zPosCorrUp = spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].getZ() + mZCorrCoefNRC * trkWork->getTgl();
713 zPosCorrUp -= zShiftTrk;
714 float padLength = pad->GetRowSize(
tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetZbin());
715 if (!((trkWork->getSigmaZ2() < (padLength * padLength / 12.f)) && (CAMath::Abs(spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].getZ() - trkWork->getZ()) < padLength))) {
718 float trkltPosUp[2] = {spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].getY() - tiltCorrUp, zPosCorrUp};
719 float trkltCovUp[3] = {0.f};
720 RecalcTrkltCov(tilt, trkWork->getSnp(), pad->GetRowSize(
tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetZbin()), trkltCovUp);
722#ifdef ENABLE_GPUTRDDEBUG
723 prop->setTrack(&trackNoUp);
724 prop->rotate(GetAlphaOfSector(trkltSec));
726 prop->propagateToX(mR[
tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetDetector()], .8f, 2.f);
727 prop->setTrack(trkWork);
730 if (!wasTrackStored) {
731#ifdef ENABLE_GPUTRDDEBUG
732 mDebug->SetTrackParameterNoUp(trackNoUp, iLayer);
734 mDebug->SetTrackParameter(*trkWork, iLayer);
735 mDebug->SetRawTrackletPosition(spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].
getX(), spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].
getY(), spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].getZ(), iLayer);
736 mDebug->SetCorrectedTrackletPosition(trkltPosUp, iLayer);
737 mDebug->SetTrackletCovariance(trkltCovUp, iLayer);
738 mDebug->SetTrackletProperties(spacePoints[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].getDy(),
tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetDetector(), iLayer);
739 wasTrackStored =
true;
742 if (!prop->update(trkltPosUp, trkltCovUp)) {
744 GPUWarning(
"Failed to update track %i with space point in layer %i", iTrk, iLayer);
746 trkWork->setChi2(trkWork->getChi2() +
Param().
rec.trd.penaltyChi2);
747 if (trkWork->getIsFindable(iLayer)) {
748 if (trkWork->getNmissingConsecLayers(iLayer) >=
Param().
rec.trd.stopTrkAfterNMissLy) {
749 trkWork->setIsStopped();
752 if (iUpdate == 0 && mNCandidates > 1) {
753 *t = mCandidates[2 * iUpdate + nextIdx];
757 if (!trkWork->CheckNumericalQuality()) {
759 GPUInfo(
"Track %i has invalid covariance matrix. Aborting track following\n", iTrk);
763 trkWork->addTracklet(iLayer, mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId);
764 trkWork->setChi2(mHypothesis[iUpdate + hypothesisIdxOffset].mChi2);
765 trkWork->setIsFindable(iLayer);
766 trkWork->setCollisionId(collisionId);
768 float projZEntry, projYEntry;
770 prop->getPropagatedYZ(trkWork->getX() - mGeo->GetCdrHght(), projYEntry, projZEntry);
776 const auto padrowEntry = pad->GetPadRowNumber(projZEntry);
777 const auto padrowExit = pad->GetPadRowNumber(trkWork->getZ());
778 if (padrowEntry != padrowExit) {
779 trkWork->setIsCrossingNeighbor(iLayer);
780 trkWork->setHasPadrowCrossing();
782 const auto currDet =
tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetDetector();
784 for (int32_t trkltIdx = glbTrkltIdxOffset + mTrackletIndexArray[trkltIdxOffset + currDet]; trkltIdx < glbTrkltIdxOffset + mTrackletIndexArray[trkltIdxOffset + currDet + 1]; ++trkltIdx) {
786 if (mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId == trkltIdx) {
789 if (CAMath::Abs(
tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetZbin() -
tracklets[trkltIdx].GetZbin()) == 1 &&
790 CAMath::Abs(
tracklets[mHypothesis[iUpdate + hypothesisIdxOffset].mTrackletId].GetY() -
tracklets[trkltIdx].GetY()) < 1) {
791 trkWork->setIsCrossingNeighbor(iLayer);
792 trkWork->setHasNeighbor();
796 if (iUpdate == 0 && mNCandidates > 1) {
797 *t = mCandidates[2 * iUpdate + nextIdx];
803 GPUInfo(
"Track %i cannot be followed. Stopped in layer %i", iTrk, iLayer);
814 mDebug->SetTrack(*t);
818 GPUInfo(
"Ended track following for track %i at x=%f with pt=%f. Attached %i tracklets", t->getRefGlobalTrackIdRaw(), t->getX(), t->getPt(), t->getNtracklets());
820 if (nCurrHypothesis > 1) {
821 if (CAMath::Abs(mHypothesis[hypothesisIdxOffset + 1].GetReducedChi2() - mHypothesis[hypothesisIdxOffset].GetReducedChi2()) <
Param().
rec.trd.chi2SeparationCut) {
828template <
class TRDTRK,
class PROP>
829GPUd()
void GPUTRDTracker_t<TRDTRK, PROP>::InsertHypothesis(Hypothesis hypo, int32_t& nCurrHypothesis, int32_t idxOffset)
835 if (nCurrHypothesis == 0) {
837 mHypothesis[idxOffset] = hypo;
839 }
else if (nCurrHypothesis > 0 && nCurrHypothesis < mNCandidates) {
841 for (int32_t
i = idxOffset;
i < nCurrHypothesis + idxOffset; ++
i) {
842 if (hypo.GetReducedChi2() < mHypothesis[
i].GetReducedChi2()) {
843 for (int32_t k = nCurrHypothesis + idxOffset; k >
i; --k) {
844 mHypothesis[k] = mHypothesis[k - 1];
846 mHypothesis[
i] = hypo;
851 mHypothesis[nCurrHypothesis + idxOffset] = hypo;
856 int32_t
i = nCurrHypothesis + idxOffset - 1;
857 for (;
i >= idxOffset; --
i) {
858 if (mHypothesis[
i].GetReducedChi2() < hypo.GetReducedChi2()) {
862 if (
i < (nCurrHypothesis + idxOffset - 1)) {
864 for (int32_t k = nCurrHypothesis + idxOffset - 1; k >
i + 1; --k) {
865 mHypothesis[k] = mHypothesis[k - 1];
867 mHypothesis[
i + 1] = hypo;
872template <
class TRDTRK,
class PROP>
883 int32_t sector = GetSector(
alpha);
885 return mGeo->GetDetector(
layer,
stack, sector);
888template <
class TRDTRK,
class PROP>
896 float alpha = mGeo->GetAlpha();
897 float xTmp = t->getX();
899 float yMax = t->getX() * CAMath::Tan(0.5f *
alpha);
900 float alphaCurr = t->getAlpha();
902 if (CAMath::Abs(
y) > 2.f *
yMax) {
904 GPUInfo(
"AdjustSector: Track %i with pT = %f crossing two sector boundaries at x = %f", t->getRefGlobalTrackIdRaw(), t->getPt(), t->getX());
910 while (CAMath::Abs(
y) >
yMax) {
914 int32_t sign = (
y > 0) ? 1 : -1;
915 float alphaNew = alphaCurr +
alpha * sign;
916 if (alphaNew > CAMath::Pi()) {
917 alphaNew -= 2 * CAMath::Pi();
918 }
else if (alphaNew < -CAMath::Pi()) {
919 alphaNew += 2 * CAMath::Pi();
921 if (!prop->rotate(alphaNew)) {
924 if (!prop->propagateToX(xTmp, .8f, 2.f)) {
933template <
class TRDTRK,
class PROP>
940 alpha += 2.f * CAMath::Pi();
941 }
else if (
alpha >= 2.f * CAMath::Pi()) {
942 alpha -= 2.f * CAMath::Pi();
944 return (int32_t)(
alpha * (
float)kNSectors / (2.f * CAMath::Pi()));
947template <
class TRDTRK,
class PROP>
953 float alpha = 2.0f * CAMath::Pi() / (
float)kNSectors * ((
float)sec + 0.5f);
954 if (
alpha > CAMath::Pi()) {
955 alpha -= 2 * CAMath::Pi();
960template <
class TRDTRK,
class PROP>
961GPUd()
void GPUTRDTracker_t<TRDTRK, PROP>::RecalcTrkltCov(const
float tilt, const
float snp, const
float rowSize,
float (&cov)[3])
967 float t2 = tilt * tilt;
968 float c2 = 1.f / (1.f + t2);
969 float sy2 = GetRPhiRes(snp);
970 float sz2 = rowSize * rowSize / 12.f;
971 cov[0] =
c2 * (sy2 + t2 * sz2);
972 cov[1] =
c2 * tilt * (sz2 - sy2);
973 cov[2] =
c2 * (t2 * sy2 + sz2);
976template <
class TRDTRK,
class PROP>
977GPUd() float
GPUTRDTracker_t<TRDTRK, PROP>::GetAngularPull(
float dYtracklet,
float snp)
const
979 float dYtrack = ConvertAngleToDy(snp);
980 float dYresolution = GetAngularResolution(snp);
981 if (dYresolution < 1e-6f) {
984 return (dYtracklet - dYtrack) / CAMath::Sqrt(dYresolution);
987template <
class TRDTRK,
class PROP>
988GPUd()
void GPUTRDTracker_t<TRDTRK, PROP>::FindChambersInRoad(const TRDTRK* t, const
float roadY, const
float roadZ, const int32_t iLayer, int32_t* det, const
float zMax, const
float alpha, const
float zShiftTrk)
const
996 const float yMax = CAMath::Abs(mGeo->GetCol0(iLayer));
997 float zTrk = t->getZ() + zShiftTrk;
999 int32_t currStack = mGeo->GetStack(zTrk, iLayer);
1000 int32_t currSec = GetSector(
alpha);
1005 if (currStack > -1) {
1007 currDet = mGeo->GetDetector(iLayer, currStack, currSec);
1008 det[nDets++] = currDet;
1010 int32_t lastPadRow = mGeo->GetRowMax(iLayer, currStack, 0);
1011 float zCenter = pp->GetRowPos(lastPadRow / 2);
1012 if ((zTrk + roadZ) > pp->GetRow0() || (zTrk - roadZ) < pp->GetRowEnd()) {
1013 int32_t addStack = zTrk > zCenter ? currStack - 1 : currStack + 1;
1014 if (addStack < kNStacks && addStack > -1) {
1015 det[nDets++] = mGeo->GetDetector(iLayer, addStack, currSec);
1019 if (CAMath::Abs(zTrk) >
zMax) {
1022 currDet = mGeo->GetDetector(iLayer, 0, currSec);
1024 currDet = mGeo->GetDetector(iLayer, kNStacks - 1, currSec);
1026 det[nDets++] = currDet;
1027 currStack = mGeo->GetStack(currDet);
1031 currDet = GetDetectorNumber(zTrk + 4.0f,
alpha, iLayer);
1032 if (currDet != -1) {
1033 det[nDets++] = currDet;
1035 currDet = GetDetectorNumber(zTrk - 4.0f,
alpha, iLayer);
1036 if (currDet != -1) {
1037 det[nDets++] = currDet;
1042 if ((CAMath::Abs(t->getY()) + roadY) >
yMax) {
1043 const int32_t nStacksToSearch = nDets;
1045 if (t->getY() > 0) {
1046 newSec = (currSec + 1) % kNSectors;
1048 newSec = (currSec > 0) ? currSec - 1 : kNSectors - 1;
1050 for (int32_t idx = 0;
idx < nStacksToSearch; ++
idx) {
1051 currStack = mGeo->GetStack(det[idx]);
1052 det[nDets++] = mGeo->GetDetector(iLayer, currStack, newSec);
1056 for (int32_t iDet = 0; iDet < nDets; iDet++) {
1057 if (!mGeo->ChamberInGeometry(det[iDet])) {
1063template <
class TRDTRK,
class PROP>
1064GPUd() bool
GPUTRDTracker_t<TRDTRK, PROP>::IsGeoFindable(const TRDTRK* t, const int32_t
layer, const
float alpha, const
float zShiftTrk)
const
1071 float zTrk = t->getZ() + zShiftTrk;
1073 int32_t det = GetDetectorNumber(zTrk,
alpha,
layer);
1081 if (!mGeo->ChamberInGeometry(det)) {
1086 float yMax = pp->GetColEnd();
1087 float zMax = pp->GetRow0();
1088 float zMin = pp->GetRowEnd();
1094 if (
yMax - CAMath::Abs(t->getY()) < epsY) {
1098 if (!((zTrk >
zMin + epsZ) && (zTrk <
zMax - epsZ))) {
1105#ifndef GPUCA_GPUCODE