Skip to content

Commit e082562

Browse files
fweigdavidrohr
authored andcommitted
GPU: Fix compilation without Vc.
1 parent 47eb04f commit e082562

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GPU/GPUTracking/TPCClusterFinder/GPUTPCCFCheckPadBaseline.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ GPUd() void GPUTPCCFCheckPadBaseline::Thread<0>(int32_t nBlocks, int32_t nThread
132132
maxConsecCharges[localpad] = CAMath::Max(maxConsecCharges[localpad], consecCharges[localpad]);
133133

134134
const Charge unpackedCharge = Charge(packedCharge) / Charge(1 << PackedCharge::DecimalBits);
135-
maxCharge[localPadId] = CAMath::Max<Charge>(maxCharge[localPad], unpackedCharge);
135+
maxCharge[localpad] = CAMath::Max<Charge>(maxCharge[localpad], unpackedCharge);
136136
} else {
137137
consecCharges[localpad] = 0;
138138
}

0 commit comments

Comments
 (0)