Skip to content

Commit 7793cb1

Browse files
committed
Fix back-propagation of hit in stepping
1 parent ad892fe commit 7793cb1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Detectors/Upgrades/ALICE3/IOTOF/simulation/src/Digitizer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ void Digitizer::stepping(const o2::itsmft::Hit& hit, float**& respMatrix, int& r
194194
LOG(debug) << "Hit position out of bounds for detector ID " << chipID;
195195
return; // hit is outside the active area
196196
}
197-
xyzPositionEnd += stepVector;
197+
xyzPositionEnd -= stepVector;
198198
}
199199

200200
if (rowStart > rowEnd) {

0 commit comments

Comments
 (0)