diff --git a/GPU/GPUTracking/TPCClusterFinder/GPUTPCCFCheckPadBaseline.cxx b/GPU/GPUTracking/TPCClusterFinder/GPUTPCCFCheckPadBaseline.cxx index 0dcad5108baaa..7470f86877490 100644 --- a/GPU/GPUTracking/TPCClusterFinder/GPUTPCCFCheckPadBaseline.cxx +++ b/GPU/GPUTracking/TPCClusterFinder/GPUTPCCFCheckPadBaseline.cxx @@ -427,14 +427,14 @@ GPUd() void GPUTPCCFCheckPadBaseline::CheckBaselineCPU(int32_t nBlocks, int32_t auto activeHIPTailEnd = activeHIPTailEndV[iVecPad]; auto tailFilterCharge = tailFilterChargeV[iVecPad]; - const CfChargePos basePos(row, iVecPad * PadsPerCacheline, t); for (tpccf::TPCFragmentTime localtime = 0; localtime < NumOfCachedTBs; localtime++) { const uint16_t* packedChargeStart = reinterpret_cast(&chargeMap[basePos.delta({0, localtime})]); const UShort8 packedCharges = t + localtime < fragment.length - ? UShort8{packedChargeStart, Vc::Aligned} : UShort8{Vc::Zero}; + ? UShort8{packedChargeStart, Vc::Aligned} + : UShort8{Vc::Zero}; const auto isCharge = packedCharges != 0; const auto unpackedCharges = Charge8(packedCharges) / Charge(1 << PackedCharge::DecimalBits);