From 797a28a572c796bbc2db34a3911afa0f51b7b08e Mon Sep 17 00:00:00 2001 From: Filip Leonarski Date: Fri, 31 Jul 2026 15:03:33 +0200 Subject: [PATCH] rugnux: correct the stale adaptive-spots default comment The declaration still said "stills on, rotation off". Adaptive detection has since been turned on for both workflows - adaptive_spots.value_or(true) - which the comment at the assignment already explains. Co-Authored-By: Claude Opus 5 (1M context) --- rugnux/rugnux_cli.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rugnux/rugnux_cli.cpp b/rugnux/rugnux_cli.cpp index 152ae0d5..84de6822 100644 --- a/rugnux/rugnux_cli.cpp +++ b/rugnux/rugnux_cli.cpp @@ -526,7 +526,7 @@ static int RunRugnux(int argc, char **argv) { float sigma_spot_finding = 3.0; int64_t photon_count_threshold_spot_finding = 10; std::optional min_pix_per_spot; // unset -> adaptive per image; a value -> fixed min-pix - std::optional adaptive_spots; // unset -> per-workflow default (stills on, rotation off) + std::optional adaptive_spots; // unset -> on, for both workflows float false_pixels_per_frame = 100.0f; std::string ref_mtz; std::string ref_column;