From 827ea159516d77f000423b7a758f0f3c35868117 Mon Sep 17 00:00:00 2001 From: davidmcdonagh Date: Thu, 18 Jul 2024 11:58:38 +0100 Subject: [PATCH] Add python wrapper for all_reflections_for_asu --- src/dials/algorithms/spot_prediction/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/dials/algorithms/spot_prediction/__init__.py b/src/dials/algorithms/spot_prediction/__init__.py index c427fcbb99..8073b7544c 100644 --- a/src/dials/algorithms/spot_prediction/__init__.py +++ b/src/dials/algorithms/spot_prediction/__init__.py @@ -271,3 +271,6 @@ def for_ub(self, ub): def for_reflection_table(self, reflections, UB): return self.predictor.for_reflection_table(reflections, UB) + + def all_reflections_for_asu(self, phi): + return self.predictor.all_reflections_for_asu(float(phi))