Skip to content

Commit 1e69f5e

Browse files
committed
GPU TPC: Fix Bz=0 threshold
1 parent 5a2ecfc commit 1e69f5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GPU/GPUTracking/Merger/GPUTPCGMMerger.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1740,7 +1740,7 @@ GPUd() void GPUTPCGMMerger::CollectMergedTracks(int32_t nBlocks, int32_t nThread
17401740
p1.DzDs() = p2.DzDs();
17411741
p1.QPt() = p2.QPt();
17421742
mergedTrack.SetAlpha(p2.Alpha());
1743-
if (CAMath::Abs(Param().polynomialField.GetNominalBz()) < (0.01f * gpu_common_constants::kCLight)) {
1743+
if (CAMath::Abs(Param().polynomialField.GetNominalBz()) < (0.013f * gpu_common_constants::kCLight)) {
17441744
p1.QPt() = 100.f / Param().rec.bz0Pt10MeV;
17451745
}
17461746

0 commit comments

Comments
 (0)