diff --git a/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb b/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb
index 0d9de779b982b7eb85b0b6e07ae6640c5ae00944..2c7bfd749ba7185179ba8476d921ff25d961a66d 100644
--- a/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb
+++ b/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb
@@ -338,9 +338,12 @@
     "mem_cells_db = mem_cells if mem_cells_db == 0 else mem_cells_db\n",
     "max_cells = mem_cells if max_cells == 0 else max_cells\n",
     "\n",
+    "fast_paths = (filename, karabo_id, channel)\n",
+    "slow_paths = (control_fn, karabo_id_control)\n",
+    "\n",
     "# Evaluate aquisition rate\n",
     "if acq_rate == 0:\n",
-    "    acq_rate = get_acq_rate((filename, karabo_id, channel))\n",
+    "    acq_rate = get_acq_rate(fast_paths, slow_paths)\n",
     "\n",
     "print(f\"Maximum memory cells to calibrate: {max_cells}\")"
    ]