From 05a4d3f867fc4427c6331fcb80d7476ddd06d0e7 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Sun, 8 Jun 2025 13:40:59 +0000 Subject: [PATCH] Please consider the following formatting changes --- .../TPCClusterFinder/GPUTPCCFDeconvolution.cxx | 2 +- .../TPCClusterFinder/GPUTPCNNClusterizerKernels.cxx | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/GPU/GPUTracking/TPCClusterFinder/GPUTPCCFDeconvolution.cxx b/GPU/GPUTracking/TPCClusterFinder/GPUTPCCFDeconvolution.cxx index 406f3cb1d6d5a..a93f970de5729 100644 --- a/GPU/GPUTracking/TPCClusterFinder/GPUTPCCFDeconvolution.cxx +++ b/GPU/GPUTracking/TPCClusterFinder/GPUTPCCFDeconvolution.cxx @@ -113,7 +113,7 @@ GPUdii() void GPUTPCCFDeconvolution::deconvolutionImpl(int32_t nBlocks, int32_t PackedCharge charge = chargeMap[pos]; - if(overwriteCharge) { + if (overwriteCharge) { PackedCharge p(charge.unpack() / peakCount, has3x3, split); chargeMap[pos] = p; } else { diff --git a/GPU/GPUTracking/TPCClusterFinder/GPUTPCNNClusterizerKernels.cxx b/GPU/GPUTracking/TPCClusterFinder/GPUTPCNNClusterizerKernels.cxx index cb0f5e92468d9..bf30d07ad2e77 100644 --- a/GPU/GPUTracking/TPCClusterFinder/GPUTPCNNClusterizerKernels.cxx +++ b/GPU/GPUTracking/TPCClusterFinder/GPUTPCNNClusterizerKernels.cxx @@ -126,8 +126,8 @@ GPUdii() void GPUTPCNNClusterizerKernels::Thread chargeMap(reinterpret_cast(clusterer.mPchargeMap)); CfChargePos peak = clusterer.mPfilteredPeakPositions[idx + batchStart]; - for(int i = 0; i < 8; i++) { + for (int i = 0; i < 8; i++) { Delta2 d = cfconsts::InnerNeighbors[i]; CfChargePos tmp_pos = peak.delta(d); PackedCharge charge = chargeMap[tmp_pos]; clustererNN.mClusterFlags[2 * idx] += (d.y != 0 && charge.isSplit()); clustererNN.mClusterFlags[2 * idx + 1] += (d.x != 0 && charge.isSplit()); } - for(int i = 0; i < 16; i++) { + for (int i = 0; i < 16; i++) { Delta2 d = cfconsts::OuterNeighbors[i]; CfChargePos tmp_pos = peak.delta(d); PackedCharge charge = chargeMap[tmp_pos];