Skip to content

Commit 6a0ce42

Browse files
committed
commit 1
1 parent 98febec commit 6a0ce42

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

GPU/GPUTracking/TPCClusterFinder/ClusterAccumulator.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ GPUd() Charge ClusterAccumulator::updateOuter(PackedCharge charge, Delta2 d)
9797
return q;
9898
}
9999

100-
GPUd() void ClusterAccumulator::finalize(const ChargePos& pos, Charge q, TPCTime timeOffset, const GPUTPCGeometry& geo)
100+
GPUd() void ClusterAccumulator::finalize(const ChargePos& pos, Charge q, TPCTime timeOffset, const GPUTPCGeometry& geo, const PackedCharge* buf)
101101
{
102102
mQtot += q;
103103

GPU/GPUTracking/TPCClusterFinder/ClusterAccumulator.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ class ClusterAccumulator
5151
float mTimeSigma = 0;
5252
uint8_t mSplitInTime = 0;
5353
uint8_t mSplitInPad = 0;
54+
bool edgeIsZero = 0;
5455

5556
GPUd() void update(tpccf::Charge, tpccf::Delta2);
5657
};

GPU/GPUTracking/TPCClusterFinder/GPUTPCCFClusterizer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ GPUdii() void GPUTPCCFClusterizer::computeClustersImpl(int32_t nBlocks, int32_t
8080
}
8181
return;
8282
}
83-
pc.finalize(pos, charge, fragment.start, clusterer.Param().tpcGeometry);
83+
pc.finalize(pos, charge, fragment.start, clusterer.Param().tpcGeometry, smem.buf);
8484

8585
tpc::ClusterNative myCluster;
8686
bool rejectCluster = !pc.toNative(pos, charge, myCluster, clusterer.Param());

0 commit comments

Comments
 (0)