Skip to content

Commit 33bb2aa

Browse files
committed
GPU: Remove obsolete GPUCA_TPC_RAW_PROPAGATE_PAD_ROW_TIME
1 parent 73bc03d commit 33bb2aa

File tree

5 files changed

+0
-16
lines changed

5 files changed

+0
-16
lines changed

GPU/GPUTracking/DataTypes/GPUTPCGMMergedTrackHit.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,6 @@ struct GPUTPCGMMergedTrackHit {
4141
struct GPUTPCGMMergedTrackHitXYZ {
4242
float x, y, z;
4343
uint16_t amp;
44-
#ifdef GPUCA_TPC_RAW_PROPAGATE_PAD_ROW_TIME
45-
float pad;
46-
float time;
47-
#endif
4844
};
4945

5046
} // namespace o2::gpu

GPU/GPUTracking/Definitions/GPUDefConstantsAndSettings.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@
6868

6969
//#define GPUCA_MERGER_BY_MC_LABEL // Use MC labels for TPC track merging - for performance studies // TODO: Cleanup unneeded options
7070
//#define GPUCA_FULL_CLUSTERDATA // Store all cluster information in the cluster data, also those not needed for tracking.
71-
//#define GPUCA_TPC_RAW_PROPAGATE_PAD_ROW_TIME // Propagate Pad, Row, Time cluster information to GM
7271
//#define GPUCA_GM_USE_FULL_FIELD // Use offline magnetic field during GMPropagator prolongation
7372

7473
// clang-format on

GPU/GPUTracking/Merger/GPUTPCGMMerger.cxx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1727,10 +1727,6 @@ GPUd() void GPUTPCGMMerger::CollectMergedTracks(int32_t nBlocks, int32_t nThread
17271727
clXYZ[i].y = c.y;
17281728
clXYZ[i].z = c.z;
17291729
clXYZ[i].amp = c.amp;
1730-
#ifdef GPUCA_TPC_RAW_PROPAGATE_PAD_ROW_TIME
1731-
clXYZ[i].pad = c.mPad;
1732-
clXYZ[i].time = c.mTime;
1733-
#endif
17341730
state = c.flags;
17351731
} else {
17361732
const ClusterNative& c = GetConstantMem()->ioPtrs.clustersNative->clustersLinear[trackClusters[i].id];

GPU/GPUTracking/SectorTracker/GPUTPCDef.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ typedef uint32_t cahit;
3333
struct cahit2 { cahit x, y; };
3434
} // namespace o2::GPU
3535

36-
#ifdef GPUCA_TPC_RAW_PROPAGATE_PAD_ROW_TIME // Needs full clusterdata
37-
#define GPUCA_FULL_CLUSTERDATA
38-
#endif
3936

4037
#if defined(GPUCA_STANDALONE) || defined(GPUCA_GPUCODE) // No support for Full Field Propagator or Statistical errors
4138
#ifdef GPUCA_GM_USE_FULL_FIELD

GPU/GPUTracking/TPCConvert/GPUTPCConvertKernel.cxx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,5 @@ GPUdii() void GPUTPCConvertKernel::Thread<0>(int32_t nBlocks, int32_t nThreads,
4444
clout.amp = clin.qTot;
4545
clout.flags = clin.getFlags();
4646
clout.id = idOffset + k;
47-
#ifdef GPUCA_TPC_RAW_PROPAGATE_PAD_ROW_TIME
48-
clout.pad = clin.getPad();
49-
clout.time = clin.getTime();
50-
#endif
5147
}
5248
}

0 commit comments

Comments
 (0)