From 33d3ca8bde972cc037bc29f347b8cab805a2517d Mon Sep 17 00:00:00 2001 From: Marko Mecina <marko.mecina@univie.ac.at> Date: Mon, 25 Mar 2024 12:54:37 +0100 Subject: [PATCH] update bad pixel mask addresses --- Ccs/calibrations_SMILE.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Ccs/calibrations_SMILE.py b/Ccs/calibrations_SMILE.py index 3fff33d..c37c46c 100644 --- a/Ccs/calibrations_SMILE.py +++ b/Ccs/calibrations_SMILE.py @@ -751,8 +751,10 @@ class BadPixelMask: NROWS = 639 NCOLS = 384 - CCD2_MASK_ADDR = 0x40654C00 - CCD4_MASK_ADDR = 0x4065CC00 + CCD2E_MASK_ADDR = 0x40644C00 + CCD2F_MASK_ADDR = 0x4064CC00 + CCD4E_MASK_ADDR = 0x40654C00 + CCD4F_MASK_ADDR = 0x4065CC00 def __init__(self): self._bin_len = int((self.NROWS * self.NCOLS) / 8) -- GitLab