diff --git a/notebooks/Jungfrau/Jungfrau_Gain_Correct_and_Verify_NBC.ipynb b/notebooks/Jungfrau/Jungfrau_Gain_Correct_and_Verify_NBC.ipynb index 5dc2a73250f74a1c1b2e3f3cc73806ba0bac71c1..3cff265cbb2f1314c335a23ffdad9144d947b3c8 100644 --- a/notebooks/Jungfrau/Jungfrau_Gain_Correct_and_Verify_NBC.ipynb +++ b/notebooks/Jungfrau/Jungfrau_Gain_Correct_and_Verify_NBC.ipynb @@ -40,6 +40,7 @@ "# Parameters affecting corrected data.\n", "relative_gain = True # do relative gain correction.\n", "strixel_sensor = False # reordering for strixel detector layout.\n", + "strixel_double_norm = 2.0 # normalization to use for double-size pixels, only applied for strixel sensors.\n", "limit_trains = 0 # ONLY FOR TESTING. process only first N trains, Use 0 to process all.\n", "chunks_ids = 32 # HDF chunk size for memoryCell and frameNumber.\n", "chunks_data = 1 # HDF chunk size for pixel data in number of frames.\n", @@ -219,8 +220,9 @@ "output_frame_shape = None\n", "\n", "if strixel_sensor:\n", - " from cal_tools.jfalgs import strixel_transform, strixel_shape\n", + " from cal_tools.jfalgs import strixel_transform, strixel_shape, strixel_double_pixels\n", " output_frame_shape = strixel_shape()\n", + " Ydouble, Xdouble = strixel_double_pixels()\n", " print('Strixel sensor transformation enabled')" ] }, diff --git a/src/cal_tools/jfalgs.pyx b/src/cal_tools/jfalgs.pyx index cc39b3e5a84f8cdead19467f1b04d55d1f739319..fd1476918d8a8f165150abe1c5bbeb6175721913 100644 --- a/src/cal_tools/jfalgs.pyx +++ b/src/cal_tools/jfalgs.pyx @@ -2,6 +2,8 @@ from cython cimport boundscheck, wraparound, cdivision from cython.view cimport contiguous +import numpy as np + ctypedef fused jf_data_t: unsigned short # raw pixel data @@ -18,6 +20,29 @@ def strixel_shape(): return STRIXEL_Y, STRIXEL_X +def strixel_double_pixels(): + """Build index arrays for double-size pixels. + + In raw data, the entire columns 255, 256, 511, 512, 767 and 768 + are double-size pixels. After strixelation, these end up in columns + 765-776, 1539-1550 and 2313-2324 on rows 0-85 or 0-83, with a set + of four columns with 86 rows followed by a set of 84 and 86 again. + + This function builds the index arrays after strixelation. + """ + + Ydouble = [] + Xdouble = [] + + for double_col in [765, 1539, 2313]: + for col in range(double_col, double_col+12): + for row in range(84 if ((col-double_col) // 4) == 1 else 86): + Ydouble.append(row) + Xdouble.append(col) + + return np.array(Ydouble), np.array(Xdouble) + + @boundscheck(False) @wraparound(False) @cdivision(True)