From b6678a60ccb864e0d5f4c741d83209d21267297e Mon Sep 17 00:00:00 2001 From: Dawn Date: Tue, 28 Jul 2026 11:54:12 +0200 Subject: [PATCH] drop indexing score --- src/aarecommon/math/find_xtal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aarecommon/math/find_xtal.py b/src/aarecommon/math/find_xtal.py index 3c76e5d..efbf5db 100644 --- a/src/aarecommon/math/find_xtal.py +++ b/src/aarecommon/math/find_xtal.py @@ -345,7 +345,7 @@ def has_sufficient_low_res_spots(result_array: np.ndarray, min_spots_low_res: fl def compute_crystal_score_array( - scan_results: List, w_bkg: float = 0.25, w_low_res: float = 0.55, w_indexed: float = 0.20 + scan_results: List, w_bkg: float = 0.25, w_low_res: float = 0.75, w_indexed: float = 0.00 ) -> np.ndarray: """Combine bkg (25%), spots_low_res (55%), and spots_indexed (20%) into a 0–100 score.