diff --git a/cal_tools/cal_tools/agipdlib.py b/cal_tools/cal_tools/agipdlib.py index 1c14701f1374cbfb448053e818272e2f2463b13a..48156b02223fd0a95d3b7022d7ee0d1b04d6fff3 100644 --- a/cal_tools/cal_tools/agipdlib.py +++ b/cal_tools/cal_tools/agipdlib.py @@ -392,7 +392,7 @@ class AgipdCorrections: Both corrections are iterative and requires 4 iterations. Correction is performed in chunks of (e.g. 512 images). - A complete array of data from one file + A complete array of data from one file (256 trains, 352 cells) will take 256 * 352 * 128 * 512 * 4 // 1024**3 = 22 Gb in memory @@ -494,7 +494,7 @@ class AgipdCorrections: self.shared_dict[i_proc]['t0_rgain'][first:last] = \ rawgain / t0[cellid, ...] self.shared_dict[i_proc]['raw_data'][first:last] = np.copy(data) - + # Often most pixels are in high-gain, so it's more efficient to # set the whole output block to zero than select the right pixels. gain[:] = 0 @@ -524,7 +524,7 @@ class AgipdCorrections: def baseline_correction(self, i_proc:int, first:int, last:int): """ - Perform image-wise base-line shift correction for + Perform image-wise base-line shift correction for data in shared memory via histogram or stripe :param first: Index of the first image to be corrected diff --git a/notebooks/AGIPD/Characterize_AGIPD_Gain_Darks_NBC.ipynb b/notebooks/AGIPD/Characterize_AGIPD_Gain_Darks_NBC.ipynb index 0138ddf887c7c37fde8676d6c55f35d61fa6d2ff..2a719adffb376cb6c3beecd90b6141075781fd1f 100644 --- a/notebooks/AGIPD/Characterize_AGIPD_Gain_Darks_NBC.ipynb +++ b/notebooks/AGIPD/Characterize_AGIPD_Gain_Darks_NBC.ipynb @@ -119,8 +119,6 @@ "# insert control device if format string (does nothing otherwise)\n", "h5path_ctrl = h5path_ctrl.format(karabo_id_control)\n", "\n", - "gains = np.arange(3)\n", - "\n", "max_cells = mem_cells\n", "\n", "offset_runs = OrderedDict()\n", @@ -558,7 +556,7 @@ " acquisition_rate=acq_rate,\n", " gain_setting=gain_setting)\n", "\n", - " # This should be used in case of running notebook \n", + " # This should be used in case of running notebook\n", " # by a different method other than myMDC which already\n", " # sends CalCat info.\n", " # TODO: Set db_module to \"\" by default in the first cell\n",