From 08f2f7222ecd7790397ddaa6b341e22bb4f9f62e Mon Sep 17 00:00:00 2001 From: Christoffer Fremling Date: Thu, 25 Jun 2026 12:50:12 -0700 Subject: [PATCH] fix: correct U-channel imsize in sequencerd.cfg.in (1024x1400) sequencerd's CAMERA_PROLOGUE imsize for the U channel (2198 4202) did not match camerad's DETECTOR_GEOMETRY for U (2048 4102), so U came out 1099x1433 when the sequencerd prologue was applied but 1024x1400 (the required size) when camerad's own geometry governed. Because the size then depended on which daemon last set the U geometry (camerad start / binning change vs sequencer startup), U flipped between 1024x1400 and 1099x1433 across a night -- causing science/cal size mismatches that broke Quick Look reduction for U (only G displayed on 2026-06-24). Set sequencerd imsize U to 2048 4102 to match camerad DETECTOR_GEOMETRY (U COL ROW 2048 4102), the required 1024x1400 at 2x3. G/R/I already matched at 1220 4114. The deployed Config/sequencerd.cfg was corrected on the instrument; this brings the tracked template in line so a rebuild does not reintroduce the mismatch. Co-Authored-By: Claude Opus 4.8 (1M context) --- Config/sequencerd.cfg.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Config/sequencerd.cfg.in b/Config/sequencerd.cfg.in index 69d2f9a2..a0491007 100644 --- a/Config/sequencerd.cfg.in +++ b/Config/sequencerd.cfg.in @@ -59,7 +59,7 @@ CAMERA_PROLOGUE=(native G ERS 1000 1000) CAMERA_PROLOGUE=(imsize I 1220 4114 0 100 1 1) CAMERA_PROLOGUE=(imsize R 1220 4114 0 100 1 1) CAMERA_PROLOGUE=(imsize G 1220 4114 0 100 1 1) -CAMERA_PROLOGUE=(imsize U 2198 4202 0 100 1 1) +CAMERA_PROLOGUE=(imsize U 2048 4102 0 100 1 1) CAMERA_PROLOGUE=(bin spat 2) CAMERA_PROLOGUE=(native I WRM 0x400004 2040) CAMERA_PROLOGUE=(native R WRM 0x400004 2040)