diff --git a/notebooks/generic/overallmodules_Darks_Summary_NBC.ipynb b/notebooks/generic/overallmodules_Darks_Summary_NBC.ipynb
index 0b5f1c966a23d46ac014612c967240be4e314c05..27e384a37d2b3b7474d130f9a7862dc6b2164879 100644
--- a/notebooks/generic/overallmodules_Darks_Summary_NBC.ipynb
+++ b/notebooks/generic/overallmodules_Darks_Summary_NBC.ipynb
@@ -30,16 +30,11 @@
    "metadata": {},
    "outputs": [],
    "source": [
-    "import copy\n",
-    "import os\n",
     "import warnings\n",
-    "from collections import OrderedDict\n",
     "from pathlib import Path\n",
     "\n",
     "warnings.filterwarnings('ignore')\n",
     "\n",
-    "import glob\n",
-    "\n",
     "import h5py\n",
     "import matplotlib\n",
     "import numpy as np\n",
@@ -55,11 +50,22 @@
     "import extra_geom\n",
     "import tabulate\n",
     "from cal_tools.ana_tools import get_range\n",
+    "from cal_tools.enums import BadPixels\n",
     "from cal_tools.plotting import show_processed_modules\n",
     "from cal_tools.tools import CalibrationMetadata, module_index_to_qm\n",
     "from XFELDetAna.plotting.simpleplot import simplePlot"
    ]
   },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "def bp_entry(bp):\n",
+    "    return [f\"{bp.name:<30s}\", f\"{bp.value:032b}\", f\"{int(bp.value)}\"]"
+   ]
+  },
   {
    "cell_type": "code",
    "execution_count": null,
@@ -79,21 +85,34 @@
     "    # This list needs to be in that order as later Adaptive or fixed gain is\n",
     "    # decided based on the condition for the Offset constant.\n",
     "    expected_constants = ['Offset', 'Noise', 'ThresholdsDark', 'BadPixelsDark']\n",
+    "\n",
+    "    table = []\n",
+    "    badpixels = [\n",
+    "        BadPixels.OFFSET_OUT_OF_THRESHOLD,\n",
+    "        BadPixels.NOISE_OUT_OF_THRESHOLD,\n",
+    "        BadPixels.OFFSET_NOISE_EVAL_ERROR,\n",
+    "        BadPixels.GAIN_THRESHOLDING_ERROR,\n",
+    "    ]\n",
+    "    for bp in badpixels:\n",
+    "        table.append(bp_entry(bp))\n",
+    "\n",
     "    display(Markdown(\"\"\"\n",
-    "    \n",
     "# Summary of AGIPD dark characterization #\n",
     "\n",
-    "The following report shows a set of dark images taken with the AGIPD detector to deduce detector offsets, noise, bad-pixel maps and thresholding. All four types of constants are evaluated per-pixel and per-memory cell.\n",
+    "The following report shows a set of dark images taken with the AGIPD detector to deduce detector offsets, \n",
+    "noise, bad-pixel maps and thresholding. All four types of constants are evaluated per-pixel and per-memory cell.\n",
     "\n",
-    "\n",
-    "**The offset** ($O$) is defined as the median ($M$) of the dark signal ($Ds$) over trains ($t$) for a given pixel ($x,y$) and memory cell ($c$). \n",
+    "**The offset** ($O$) is defined as the median ($M$) of the dark signal ($Ds$) over trains ($t$) for a given pixel \n",
+    "($x,y$) and memory cell ($c$). \n",
     "\n",
     "**The noise** $N$ is the standard deviation $\\sigma$ of the dark signal.\n",
     "\n",
     "$$ O_{x,y,c} = M(Ds)_{t} ,\\,\\,\\,\\,\\,\\, N_{x,y,c} = \\sigma(Ds)_{t}$$\n",
     "\n",
-    "**The bad pixel** mask is encoded as a bit mask.\n",
+    "**The bad pixel** mask is encoded as a bit mask.\"\"\"))\n",
     "\n",
+    "    display(Latex(tabulate.tabulate(table, tablefmt='latex', headers=[\"Name\", \"bit value\", \"integer value\"])))\n",
+    "    display(Markdown(\"\"\"\n",
     "**\"OFFSET_OUT_OF_THRESHOLD\":**\n",
     "\n",
     "Offset outside of bounds:\n",
@@ -120,7 +139,7 @@
     "\n",
     "Values: $\\mathrm{thresholds\\_offset\\_sigma}$, $\\mathrm{thresholds\\_offset\\_hard}$, $\\mathrm{thresholds\\_noise\\_sigma}$, $\\mathrm{thresholds\\_noise\\_hard}$ are given as parameters.\n",
     "\n",
-    "\"**\\\"GAIN_THRESHOLDING_ERROR\\\":**\n",
+    "**\"GAIN_THRESHOLDING_ERROR\":**\n",
     "\n",
     "Bad gain separated pixels with sigma separation less than gain_separation_sigma_threshold\n",
     "\n",
@@ -128,11 +147,20 @@
     "$$ Bad\\_separation = sigma\\_separation < \\mathrm{gain\\_separation\\_sigma\\_threshold} $$\n",
     "\n",
     "\"\"\"))\n",
+    "\n",
     "    \n",
     "elif \"LPD\" in karabo_id:\n",
     "    dinstance = \"LPD1M1\"\n",
     "    nmods = 16\n",
     "    expected_constants = ['Offset', 'Noise', 'BadPixelsDark']\n",
+    "    table = []\n",
+    "    badpixels = [\n",
+    "        BadPixels.OFFSET_OUT_OF_THRESHOLD,\n",
+    "        BadPixels.NOISE_OUT_OF_THRESHOLD,\n",
+    "        BadPixels.OFFSET_NOISE_EVAL_ERROR,\n",
+    "    ]\n",
+    "    for bp in badpixels:\n",
+    "        table.append(bp_entry(bp))\n",
     "    display(Markdown(\"\"\"\n",
     "    \n",
     "# Summary of LPD dark characterization #\n",
@@ -145,7 +173,9 @@
     "\n",
     "$$ O_{x,y,c} = M(Ds)_{t} ,\\,\\,\\,\\,\\,\\, N_{x,y,c} = \\sigma(Ds)_{t}$$\n",
     "\n",
-    "**The bad pixel** mask is encoded as a bit mask.\n",
+    "**The bad pixel** mask is encoded as a bit mask.\"\"\"))\n",
+    "    display(Latex(tabulate.tabulate(table, tablefmt='latex', headers=[\"Name\", \"bit value\", \"integer value\"])))\n",
+    "    display(Markdown(\"\"\"\n",
     "\n",
     "**\"OFFSET_OUT_OF_THRESHOLD\":**\n",
     "\n",