Skip to content

Commit 039a6b6

Browse files
more cleanup
1 parent 24f1963 commit 039a6b6

3 files changed

Lines changed: 1 addition & 3 deletions

File tree

GPU/GPUTracking/Merger/GPUTPCGMMerger.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ GPUd() void GPUTPCGMMerger::MergeSectorsPrepareStep2(int32_t nBlocks, int32_t nT
701701
const GPUTPCGMSectorTrack* trackMin = track;
702702
while (track->NextSegmentNeighbour() >= 0 && track->Sector() == mSectorTrackInfos[track->NextSegmentNeighbour()].Sector()) {
703703
track = &mSectorTrackInfos[track->NextSegmentNeighbour()];
704-
if ((*track->OrigTrack()).Param().X() < trackMin->OrigTrack()->Param().X()) {
704+
if (track->OrigTrack()->Param().X() < trackMin->OrigTrack()->Param().X()) {
705705
trackMin = track;
706706
}
707707
}

GPU/GPUTracking/SectorTracker/GPUTPCExtrapolationTracking.cxx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ GPUd() int32_t GPUTPCExtrapolationTracking::PerformExtrapolationTrackingRun(GPUT
110110
rowIndex--;
111111
}
112112
}
113-
//GPUTPCTrack& GPUrestrict() track = tracker.Tracks()[trackId];
114113
MemLayout::wrapper<GPUTPCTrackSkeleton, MemLayout::reference_restrict> track = tracker.Tracks()[trackId];
115114
track.SetParam(tParam.GetParam());
116115
track.SetNHits(nHits);

GPU/GPUTracking/SectorTracker/GPUTPCTrackParam.cxx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
#include "GPUTPCTrackLinearisation.h"
1616
#include "GPUTPCTrackParam.h"
1717
#include "GPUTPCGeometry.h"
18-
#include "GPUTPCDef.h"
1918
#include "MemLayout.h"
2019

2120
using namespace o2::gpu;

0 commit comments

Comments
 (0)