Skip to content

Commit dd74f72

Browse files
committed
GPU TPCCF: Fix indentation
1 parent bdf6292 commit dd74f72

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

GPU/GPUTracking/TPCClusterFinder/GPUTPCCFClusterizer.cxx

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ template <>
2929
GPUdii() void GPUTPCCFClusterizer::Thread<0>(int32_t nBlocks, int32_t nThreads, int32_t iBlock, int32_t iThread, GPUSharedMemory& smem, processorType& clusterer, int8_t onlyMC)
3030
{
3131
Array2D<PackedCharge> chargeMap(reinterpret_cast<PackedCharge*>(clusterer.mPchargeMap));
32-
CPU_ONLY(
33-
MCLabelAccumulator labelAcc(clusterer));
32+
CPU_ONLY(MCLabelAccumulator labelAcc(clusterer));
3433

3534
tpc::ClusterNative* clusterOut = (onlyMC) ? nullptr : clusterer.mPclusterByRow;
3635

@@ -132,8 +131,7 @@ GPUdii() void GPUTPCCFClusterizer::updateClusterInner(
132131

133132
Charge q = cluster->updateInner(p, d);
134133

135-
CPU_ONLY(
136-
labelAcc->collect(pos.delta(d), q));
134+
CPU_ONLY(labelAcc->collect(pos.delta(d), q));
137135

138136
aboveThreshold |= (uint8_t(q > calib.tpc.cfInnerThreshold) << i);
139137
}
@@ -162,8 +160,7 @@ GPUdii() void GPUTPCCFClusterizer::updateClusterOuter(
162160
Charge q = cluster->updateOuter(p, d);
163161
static_cast<void>(q); // Avoid unused varible warning on GPU.
164162

165-
CPU_ONLY(
166-
labelAcc->collect(pos.delta(d), q));
163+
CPU_ONLY(labelAcc->collect(pos.delta(d), q));
167164
}
168165
}
169166

0 commit comments

Comments
 (0)