From 07bd2262872183cc01ca1083618eaa6644088ff7 Mon Sep 17 00:00:00 2001
From: Philipp Schmidt <philipp.schmidt@xfel.eu>
Date: Tue, 8 Mar 2022 14:16:18 +0100
Subject: [PATCH] Add skip-plots option to JF correct

---
 .../Jungfrau_Gain_Correct_and_Verify_NBC.ipynb    | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/notebooks/Jungfrau/Jungfrau_Gain_Correct_and_Verify_NBC.ipynb b/notebooks/Jungfrau/Jungfrau_Gain_Correct_and_Verify_NBC.ipynb
index c4ad3a842..19206fc2b 100644
--- a/notebooks/Jungfrau/Jungfrau_Gain_Correct_and_Verify_NBC.ipynb
+++ b/notebooks/Jungfrau/Jungfrau_Gain_Correct_and_Verify_NBC.ipynb
@@ -50,6 +50,9 @@
     "mem_cells = 0  # leave memory cells equal 0, as it is saved in control information starting 2019.\n",
     "bias_voltage = 180  # will be overwritten by value in file\n",
     "\n",
+    "# Parameters for plotting\n",
+    "skip_plots = False  # exit after writing corrected files\n",
+    "\n",
     "# TODO: Remove\n",
     "db_module = [\"\"]  # ID of module in calibration database, this parameter is ignore in the notebook. TODO: remove from calibration_configurations.\n",
     "\n",
@@ -512,6 +515,18 @@
     "step_timer.print_summary()"
    ]
   },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "if skip_plots:\n",
+    "    print('Skipping plots')\n",
+    "    import sys\n",
+    "    sys.exit(0)"
+   ]
+  },
   {
    "cell_type": "code",
    "execution_count": null,
-- 
GitLab