Skip to content
Snippets Groups Projects

[AGIPD] [Correct] Add parameter for gain_mode in AGIPD correction

Merged Thomas Kluyver requested to merge override-gain-mode into master
Files
2
@@ -51,6 +51,7 @@
"bias_voltage = 300 # Bias voltage\n",
"acq_rate = 0. # the detector acquisition rate, use 0 to try to auto-determine\n",
"gain_setting = 0.1 # the gain setting, use 0.1 to try to auto-determine\n",
"gain_mode = -1 # gain mode (0: adaptive, 1-3 fixed high/med/low, -1: read from CONTROL data)\n",
"photon_energy = 9.2 # photon energy in keV\n",
"overwrite = True # set to True if existing data should be overwritten\n",
"max_pulses = [0, 352, 1] # range list [st, end, step] of memory cell indices to be processed within a train. 3 allowed maximum list input elements.\n",
@@ -158,7 +159,7 @@
" get_num_cells,\n",
")\n",
"from cal_tools.ana_tools import get_range\n",
"from cal_tools.enums import BadPixels\n",
"from cal_tools.enums import AgipdGainMode, BadPixels\n",
"from cal_tools.step_timing import StepTimer\n",
"\n",
"sns.set()\n",
@@ -443,7 +444,10 @@
" gain_setting = 0\n",
"\n",
"# Evaluate gain mode (operation mode)\n",
"gain_mode = get_gain_mode(control_fn, h5path_ctrl)\n",
"if gain_mode < 0:\n",
" gain_mode = get_gain_mode(control_fn, h5path_ctrl)\n",
"else:\n",
" gain_mode = AgipdGainMode(gain_mode)\n",
"\n",
"# Evaluate integration time\n",
"if integration_time < 0:\n",
@@ -1247,7 +1251,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.11"
"version": "3.8.12"
}
},
"nbformat": 4,
Loading