From 86fdecbcf794ad1f049661a3c8e16be9411c6501 Mon Sep 17 00:00:00 2001
From: ahmedk <karim.ahmed@xfel.eu>
Date: Tue, 28 Mar 2023 15:25:31 +0200
Subject: [PATCH] exit notebook if no correction files found for the selected
 sequence

---
 notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb b/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb
index 392f92260..6bad58b39 100644
--- a/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb
+++ b/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb
@@ -853,7 +853,12 @@
     "    :param tid: Train Id to be loaded. First train is considered if None is given\n",
     "    :param path: Path to find image data inside h5 file\n",
     "    \"\"\"\n",
-    "    run_data = RunDirectory(data_folder, include)\n",
+    "    try:\n",
+    "        run_data = RunDirectory(data_folder, include)\n",
+    "    except FileNotFoundError:\n",
+    "        warning(f'No correction files for {include}. Skipping plots.')\n",
+    "        import sys\n",
+    "        sys.exit(0)\n",
     "    if tid is not None:\n",
     "        tid, data = run_data.select(\n",
     "            f'{detector_id}/DET/*', source).train_from_id(tid, keep_dims=True)\n",
-- 
GitLab