Skip to content
Merged
Show file tree
Hide file tree
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 @@ -146,7 +146,7 @@ GPUdii() o2::track::TrackParCov buildTrackSeed(const Cluster& cluster1,
const float dx = x3 - x1;
const float dy = y3 - y1;
snp = sign * dy / o2::gpu::CAMath::Hypot(dx, dy);
q2pt = sign / track::kMostProbablePt;
q2pt = 1.f / track::kMostProbablePt;
q2pt2 = 1.f;
} else {
const float crv = math_utils::computeCurvature(x3, y3, x2, y2, x1, y1);
Expand Down
2 changes: 1 addition & 1 deletion Detectors/ITSMFT/ITS/tracking/src/TrackerTraits.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1281,7 +1281,7 @@ track::TrackParCov TrackerTraits<nLayers>::buildTrackSeed(const Cluster& cluster
const float dx = x3 - x1;
const float dy = y3 - y1;
snp = sign * dy / o2::gpu::CAMath::Hypot(dx, dy);
q2pt = sign / track::kMostProbablePt;
q2pt = 1.f / track::kMostProbablePt;
q2pt2 = 1.f;
} else {
const float crv = math_utils::computeCurvature(x3, y3, x2, y2, x1, y1);
Expand Down
Loading