From 14bd0d49e16d1b24c47c64c71ccef5b883c754de Mon Sep 17 00:00:00 2001 From: Philipp Schmidt <philipp.schmidt@xfel.eu> Date: Thu, 12 May 2022 13:04:40 +0200 Subject: [PATCH] Improve plotting details after gain fix --- notebooks/LPD/LPD_Correct_Fast.ipynb | 29 +++++++++++----------------- 1 file changed, 11 insertions(+), 18 deletions(-) diff --git a/notebooks/LPD/LPD_Correct_Fast.ipynb b/notebooks/LPD/LPD_Correct_Fast.ipynb index 136a29bc6..e5c638463 100644 --- a/notebooks/LPD/LPD_Correct_Fast.ipynb +++ b/notebooks/LPD/LPD_Correct_Fast.ipynb @@ -462,15 +462,12 @@ "metadata": {}, "outputs": [], "source": [ - "\n", - "\n", "geom = xg.LPD_1MGeometry.from_quad_positions(\n", " [(11.4, 299), (-11.5, 8), (254.5, -16), (278.5, 275)])\n", "\n", "output_paths = [outp_path for _, _, outp_path in data_to_process if outp_path.exists()]\n", "dc = xd.DataCollection.from_paths(output_paths).select_trains(np.s_[0])\n", "\n", - "LPD1M._source_re = re.compile(r'(?P<detname>.+_LPD1M.*)\\/(?:DET|CORR)\\/(?P<modno>\\d+)CH')\n", "det = LPD1M(dc, detector_name=karabo_id)\n", "data = det.get_array('image.data')" ] @@ -488,11 +485,11 @@ "metadata": {}, "outputs": [], "source": [ - "left_edge_ratio = 0.01\n", - "right_edge_ratio = 0.99\n", + "left_edge_ratio = 0.02\n", + "right_edge_ratio = 0.98\n", "\n", "fig, ax = plt.subplots(num=1, clear=True, figsize=(15, 6))\n", - "values, bins, _ = ax.hist(np.ravel(data.data), bins=500, range=(-5000, 20000))\n", + "values, bins, _ = ax.hist(np.ravel(data.data), bins=500, range=(-5000, 10000))\n", "\n", "def find_nearest_index(array, value):\n", " return (np.abs(array - value)).argmin()\n", @@ -511,7 +508,8 @@ " color='red', rotation=90, ha='left', va='center', size='x-large')\n", "\n", "ax.set_xlim(-5000, 20000)\n", - "ax.set_ylim(0, max_value*1.1)" + "ax.set_ylim(0, max_value*1.1)\n", + "pass" ] }, { @@ -528,7 +526,8 @@ "outputs": [], "source": [ "fig, ax = plt.subplots(num=2, figsize=(15, 15), clear=True, nrows=1, ncols=1)\n", - "geom.plot_data_fast(data[:, 0, 0], ax=ax, vmin=vmin, vmax=vmax);" + "geom.plot_data_fast(data[:, 0, 0], ax=ax, vmin=vmin, vmax=vmax)\n", + "pass" ] }, { @@ -551,7 +550,8 @@ "outputs": [], "source": [ "fig, ax = plt.subplots(num=3, figsize=(15, 15), clear=True, nrows=1, ncols=1)\n", - "geom.plot_data_fast(data[:, 0].mean(axis=1), ax=ax, vmin=vmin, vmax=vmax);" + "geom.plot_data_fast(data[:, 0].mean(axis=1), ax=ax, vmin=vmin, vmax=vmax)\n", + "pass" ] }, { @@ -567,15 +567,8 @@ "metadata": {}, "outputs": [], "source": [ - "highest_gain_stage = det.get_array('image.gain', pulses=np.s_[:]).max(axis=(1, 2))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ + "highest_gain_stage = det.get_array('image.gain', pulses=np.s_[:]).max(axis=(1, 2))\n", + "\n", "fig, ax = plt.subplots(num=4, figsize=(15, 15), clear=True, nrows=1, ncols=1)\n", "p = geom.plot_data_fast(highest_gain_stage, ax=ax, vmin=0, vmax=2);\n", "\n", -- GitLab