Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: AliceO2Group/AliceO2
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b5b6985c080c0b75d844e73e15e380baf80d95f3
Choose a base ref
..
head repository: AliceO2Group/AliceO2
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fdf4db138b19db4087c1502c962dc74a71c6f877
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 GPU/GPUTracking/TPCClusterFinder/ClusterAccumulator.cxx
2 changes: 1 addition & 1 deletion GPU/GPUTracking/TPCClusterFinder/ClusterAccumulator.cxx
Original file line number Diff line number Diff line change
@@ -81,7 +81,7 @@ GPUd() bool ClusterAccumulator::toNative(const ChargePos& pos, const Charge q, t

bool isEdgeCluster;
if (param.rec.tpc.cfEdgeTwoPads) {
isEdgeCluster= pad < 2 || pad >= param.tpcGeometry.NPads(pos.row()) - 2; // Geometrical edge check, peak within 2 pads of sector edge
isEdgeCluster = pad < 2 || pad >= param.tpcGeometry.NPads(pos.row()) - 2; // Geometrical edge check, peak within 2 pads of sector edge
if (isEdgeCluster) {
bool leftEdge = (pad < 2);
if (leftEdge ? (pad == 1 && chargeMap[pos.delta({-1, 0})].unpack() < 1) : (pad == (param.tpcGeometry.NPads(pos.row()) - 2) && chargeMap[pos.delta({1, 0})].unpack() < 1)) {