From cfd319a0b64f798f1c6b2a697a17dc26accc5990 Mon Sep 17 00:00:00 2001 From: davidmcdonagh Date: Tue, 3 Oct 2023 15:55:01 +0100 Subject: [PATCH] Reduced tof default bbox. --- .../algorithms/profile_model/gaussian_rs/bbox_calculator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dials/algorithms/profile_model/gaussian_rs/bbox_calculator.h b/src/dials/algorithms/profile_model/gaussian_rs/bbox_calculator.h index 0b9566b596..7b09d0d450 100644 --- a/src/dials/algorithms/profile_model/gaussian_rs/bbox_calculator.h +++ b/src/dials/algorithms/profile_model/gaussian_rs/bbox_calculator.h @@ -452,7 +452,7 @@ namespace dials { double z2 = sequence_.get_frame_from_tof(tof2); double2 z(z1, z2); - int6 bbox(x0, x1, y0, y1, frame - 5, frame + 65); + int6 bbox(x0, x1, y0, y1, frame - 5, frame + 7); DIALS_ASSERT(bbox[1] > bbox[0]); DIALS_ASSERT(bbox[3] > bbox[2]); DIALS_ASSERT(bbox[5] > bbox[4]);