Skip to content

Commit c73ec0f

Browse files
Fix typo
1 parent dd4650e commit c73ec0f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

spine/post/reco/cathode_cross.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,7 @@ def process(self, data):
193193
# Check if the two particles stop at roughly the same
194194
# position in the plane of the cathode
195195
compat = True
196-
dist_mat = scipy_cdist(
197-
end_points_i[:, caxes], end_points_j[:, caxes])
196+
dist_mat = cdist(end_points_i[:, caxes], end_points_j[:, caxes])
198197
argmin = np.argmin(dist_mat)
199198
pair_i, pair_j = np.unravel_index(argmin, (2, 2))
200199
compat &= (

0 commit comments

Comments
 (0)