From 90a4e53174b1b5e157c08843951b1fe4031e2d5e Mon Sep 17 00:00:00 2001 From: Chris Pankow Date: Sun, 23 Jul 2017 14:41:05 -0500 Subject: [PATCH] rapidpe_cig: slicing wrong axis Original: 693a2da4e361372188e95356a75fa14eff8ed423 --- lalinference/python/rapidpe_compute_intrinsic_grid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lalinference/python/rapidpe_compute_intrinsic_grid.py b/lalinference/python/rapidpe_compute_intrinsic_grid.py index 293bf36680..fbff94926f 100644 --- a/lalinference/python/rapidpe_compute_intrinsic_grid.py +++ b/lalinference/python/rapidpe_compute_intrinsic_grid.py @@ -251,7 +251,7 @@ pts = amrlib.apply_transform(pts, intr_prms, opts.distance_coordinates) # assumes the first N points are from the bank in question. That's okay for now # but we're getting increasingly complex in how we do construction, so we should # be more sophisticated by matching template IDs instead. -tree = BallTree(pts[:,:ovrlp.shape[0]]) +tree = BallTree(pts[:ovrlp.shape[0]]) # # Step 3: Get the row of the overlap matrix to work with -- GitLab