From 8b5516eb3923faa2ff378fcd4cef34dc652b0af0 Mon Sep 17 00:00:00 2001
From: ahmedk <karim.ahmed@xfel.eu>
Date: Fri, 13 Jan 2023 14:40:21 +0100
Subject: [PATCH] change message and raise ValueError

---
 notebooks/ePix100/Correction_ePix100_NBC.ipynb               | 5 +++--
 .../ePix100/ePix100_retrieve_constants_precorrection.ipynb   | 4 ++--
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/notebooks/ePix100/Correction_ePix100_NBC.ipynb b/notebooks/ePix100/Correction_ePix100_NBC.ipynb
index 052067fe3..33089c104 100644
--- a/notebooks/ePix100/Correction_ePix100_NBC.ipynb
+++ b/notebooks/ePix100/Correction_ePix100_NBC.ipynb
@@ -296,8 +296,9 @@
     "missing_dark_constants = set(\n",
     "    c for c in [\"OffsetEPix100\", \"NoiseEPix100\"] if c not in const_data.keys())\n",
     "if missing_dark_constants:\n",
-    "    raise KeyError(\n",
-    "        f\"Dark constants {missing_dark_constants} are not available for correction.\")\n",
+    "    raise ValueError(\n",
+    "        f\"Dark constants {missing_dark_constants} are not available to correct {karabo_da}. \"\n",
+    "        \"No correction is performed!\")\n",
     "\n",
     "if relative_gain and \"RelativeGainEPix100\" not in const_data.keys():\n",
     "    warning(\"RelativeGainEPix100 is not found in the calibration database.\")\n",
diff --git a/notebooks/ePix100/ePix100_retrieve_constants_precorrection.ipynb b/notebooks/ePix100/ePix100_retrieve_constants_precorrection.ipynb
index c955f1361..258149ad8 100644
--- a/notebooks/ePix100/ePix100_retrieve_constants_precorrection.ipynb
+++ b/notebooks/ePix100/ePix100_retrieve_constants_precorrection.ipynb
@@ -164,8 +164,8 @@
     "missing_dark_constants = set(\n",
     "    c for c in [\"OffsetEPix100\", \"NoiseEPix100\"] if c not in epix_metadata[karabo_da].keys())\n",
     "if missing_dark_constants:\n",
-    "    raise KeyError(\n",
-    "        f\"Dark constants {missing_dark_constants} are not available for correction.\")\n",
+    "    raise ValueError(\n",
+    "        f\"Dark constants {missing_dark_constants} are not available to correct {karabo_da}. \")\n",
     "if relative_gain and \"RelativeGainEPix100\" not in list(epix_metadata.values())[0].keys():\n",
     "    warning(\"RelativeGainEPix100 is not found in CALCAT.\")\n",
     "\n",
-- 
GitLab