@@ -126,8 +126,8 @@ GPUdii() void GPUTPCNNClusterizerKernels::Thread<GPUTPCNNClusterizerKernels::fil
126126
127127 if (clustererNN.mNnClusterizerAddIndexData && (int32_t )transient_index == (clustererNN.mNnClusterizerElementSize - 1 )) {
128128 uint32_t top_idx = (base_idx + 1 ) * clustererNN.mNnClusterizerElementSize ;
129- if (!clustererNN.mNnClusterizerSetDeconvolutionFlags ){ // Only if deconvolution flags are not set
130- for (uint16_t i = 0 ; i < 8 ; i++) { // This solution needs testing. It is not the same as the deconvolution flags
129+ if (!clustererNN.mNnClusterizerSetDeconvolutionFlags ) { // Only if deconvolution flags are not set
130+ for (uint16_t i = 0 ; i < 8 ; i++) { // This solution needs testing. It is not the same as the deconvolution flags
131131 Delta2 d = cfconsts::InnerNeighbors[i];
132132 CfChargePos tmp_pos = peak.delta (d);
133133 clustererNN.mClusterFlags [2 * base_idx] += CfUtils::isPeak (isPeakMap[tmp_pos]);
@@ -470,14 +470,14 @@ GPUdii() void GPUTPCNNClusterizerKernels::Thread<GPUTPCNNClusterizerKernels::pub
470470 CfArray2D<PackedCharge> chargeMap (reinterpret_cast <PackedCharge*>(clusterer.mPchargeMap ));
471471 CfChargePos peak = clusterer.mPfilteredPeakPositions [idx + batchStart];
472472
473- for (int i = 0 ; i < 8 ; i++) {
473+ for (int i = 0 ; i < 8 ; i++) {
474474 Delta2 d = cfconsts::InnerNeighbors[i];
475475 CfChargePos tmp_pos = peak.delta (d);
476476 PackedCharge charge = chargeMap[tmp_pos];
477477 clustererNN.mClusterFlags [2 * idx] += (d.y != 0 && charge.isSplit ());
478478 clustererNN.mClusterFlags [2 * idx + 1 ] += (d.x != 0 && charge.isSplit ());
479479 }
480- for (int i = 0 ; i < 16 ; i++) {
480+ for (int i = 0 ; i < 16 ; i++) {
481481 Delta2 d = cfconsts::OuterNeighbors[i];
482482 CfChargePos tmp_pos = peak.delta (d);
483483 PackedCharge charge = chargeMap[tmp_pos];
0 commit comments