Skip to content

Commit 709813e

Browse files
matthias-kleinersawenzel
authored andcommitted
fixed usage of GPUCA_TPC_RAW_PROPAGATE_PAD_ROW_TIME
1 parent 8f5d69d commit 709813e

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

GPU/GPUTracking/Merger/GPUTPCGMMerger.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1182,7 +1182,7 @@ void GPUTPCGMMerger::CollectMergedTracks()
11821182
cl[i].leg = clA[i].y;
11831183
#ifdef GPUCA_TPC_RAW_PROPAGATE_PAD_ROW_TIME
11841184
cl[i].pad = trackClusters[i].mPad;
1185-
cl[i].time = trackClusters[i].fTime;
1185+
cl[i].time = trackClusters[i].mTime;
11861186
#endif
11871187
}
11881188

GPU/GPUTracking/SliceTracker/GPUTPCTracker.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@ GPUh() void GPUTPCTracker::WriteOutput()
260260
GPUTPCSliceOutCluster c;
261261
c.Set(id, iRow, flags, amp, origX, origY, origZ);
262262
#ifdef GPUCA_TPC_RAW_PROPAGATE_PAD_ROW_TIME
263-
c.pad = mData.ClusterData()[clusterIndex].pad;
264-
c.time = mData.ClusterData()[clusterIndex].time;
263+
c.mPad = mData.ClusterData()[clusterIndex].pad;
264+
c.mTime = mData.ClusterData()[clusterIndex].time;
265265
#endif
266266
out->SetCluster(nClu, c);
267267
nClu++;

GPU/GPUTracking/TPCConvert/GPUTPCConvertKernel.cxx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ GPUd() void GPUTPCConvertKernel::Thread<0>(int nBlocks, int nThreads, int iBlock
4949
cout.amp = cin.qMax;
5050
cout.flags = cin.getFlags();
5151
cout.id = idOffset + k;
52+
#ifdef GPUCA_TPC_RAW_PROPAGATE_PAD_ROW_TIME
53+
cout.pad = cin.getPad();
54+
cout.time = cin.getTime();
55+
#endif
5256
}
5357
}
5458
#endif

0 commit comments

Comments
 (0)