diff --git a/notebooks/Jungfrau/Jungfrau_Gain_Correct_and_Verify_NBC.ipynb b/notebooks/Jungfrau/Jungfrau_Gain_Correct_and_Verify_NBC.ipynb index 3c65015a983f33867e7048b426b84fbb8b03976d..d0d89969be4e5d3abb1c89da958069a1e277b808 100644 --- a/notebooks/Jungfrau/Jungfrau_Gain_Correct_and_Verify_NBC.ipynb +++ b/notebooks/Jungfrau/Jungfrau_Gain_Correct_and_Verify_NBC.ipynb @@ -17,16 +17,16 @@ "metadata": {}, "outputs": [], "source": [ - "in_folder = \"/gpfs/exfel/exp/FXE/202301/p003279/raw\" # the folder to read data from, required\n", - "out_folder = \"/gpfs/exfel/data/scratch/kluyvert/jf-corr-p3279-r275\" # the folder to output to, required\n", - "run = 275 # run to process, required\n", + "in_folder = \"/gpfs/exfel/exp/HED/202331/p900360/raw\" # the folder to read data from, required\n", + "out_folder = \"/gpfs/exfel/data/scratch/ahmedk/test/remove/jungfrau\" # the folder to output to, required\n", + "run = 20 # run to process, required\n", "metadata_folder = \"\" # Directory containing calibration_metadata.yml when run by xfel-calibrate\n", "sequences = [-1] # sequences to correct, set to [-1] for all, range allowed\n", "sequences_per_node = 1 # number of sequence files per cluster node if run as slurm job, set to 0 to not run SLURM parallel\n", "\n", "# Parameters used to access raw data.\n", - "karabo_id = \"FXE_XAD_JF500K\" # karabo prefix of Jungfrau devices\n", - "karabo_da = ['JNGFR03'] # data aggregators\n", + "karabo_id = \"HED_IA1_JF500K4\" # karabo prefix of Jungfrau devices\n", + "karabo_da = ['JNGFR04'] # data aggregators\n", "receiver_template = \"JNGFR{:02d}\" # Detector receiver template for accessing raw data files. e.g. \"JNGFR{:02d}\"\n", "instrument_source_template = '{}/DET/{}:daqOutput' # template for source name (filled with karabo_id & receiver_id). e.g. 'SPB_IRDA_JF4M/DET/JNGFR01:daqOutput'\n", "ctrl_source_template = '{}/DET/CONTROL' # template for control source name (filled with karabo_id_control)\n", @@ -44,6 +44,8 @@ "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", + "wrong_gain_pixels = [-1] # List of 5 values (e.g. [4, 0, 255, 896, 1024]) defining the module number (4 for JNGFR04). And using the indexes of the FEM row [pixel_x_0:pixel_x_1] and column [pixel_y_0:pixel_y_1]. Set to -1 to not pick pixels for gain replacement.\n", + "replace_wrong_gain_value = 0 # Force gain value into the chosen gain [0, 1, or 2] for pixels specified in `wrong_gain_pixels`. This has no effect if wrong_gain_pixels = [-1]\n", "\n", "# Parameters for retrieving calibration constants\n", "integration_time = -1 # integration time in us. set to -1 to overwrite by value in file.\n", @@ -61,6 +63,7 @@ "roi_definitions = [-1] # List with groups of 6 values defining ROIs, e.g. [3, 120, 180, 200, 550, -2] for module 3 (JNGFR03), slice 120:180, 200:550, average along axis -2 (slow scan, or -1 for fast scan)\n", "roi_threshold = 2. # Corrected pixels below the threshold will be excluded from ROI projections. Set to -1 to include all pixels.\n", "\n", + "\n", "def balance_sequences(in_folder, run, sequences, sequences_per_node, karabo_da):\n", " from xfel_calibrate.calibrate import balance_sequences as bs\n", " return bs(in_folder, run, sequences, sequences_per_node, karabo_da)" @@ -84,17 +87,16 @@ "import numpy as np\n", "import pasha as psh\n", "import tabulate\n", - "from IPython.display import Latex, Markdown, display\n", "from extra_data import DataCollection, H5File, RunDirectory, by_id, components\n", + "from IPython.display import Latex, Markdown, display\n", "from matplotlib.colors import LogNorm\n", "\n", "import cal_tools.restful_config as rest_cfg\n", "from cal_tools.calcat_interface import JUNGFRAU_CalibrationData\n", - "from cal_tools.jungfraulib import JungfrauCtrl\n", "from cal_tools.enums import BadPixels\n", + "from cal_tools.files import DataFile\n", "from cal_tools.jungfraulib import JungfrauCtrl\n", "from cal_tools.plotting import init_jungfrau_geom\n", - "from cal_tools.files import DataFile\n", "from cal_tools.step_timing import StepTimer\n", "from cal_tools.tools import (\n", " calcat_creation_time,\n", @@ -400,6 +402,18 @@ " # Change low gain to 2 for indexing purposes.\n", " g[g==3] = 2\n", "\n", + " # A fix for a module hardware problem (e.g. Jungfrau_M302)\n", + " # of chip being stuck on the wrong gain bit.\n", + " if (\n", + " wrong_gain_pixels[0] > -1 and\n", + " wrong_gain_pixels[0] == int(local_karabo_da[-2:])\n", + " ):\n", + " x1 = wrong_gain_pixels[1]\n", + " x2 = wrong_gain_pixels[2]\n", + " y1 = wrong_gain_pixels[3]\n", + " y2 = wrong_gain_pixels[4]\n", + " g[:, x1:x2, y1:y2] = replace_wrong_gain_value\n", + "\n", " # Select memory cells\n", " if memory_cells > 1:\n", " \"\"\"\n",