diff --git a/notebooks/AGIPD/Characterize_AGIPD_Gain_Darks_NBC.ipynb b/notebooks/AGIPD/Characterize_AGIPD_Gain_Darks_NBC.ipynb
index 0e05035d434af2710418b0db025d1fdcbbb6e032..cbcee2e6b913ff74e29d15f20d2669ea2182b137 100644
--- a/notebooks/AGIPD/Characterize_AGIPD_Gain_Darks_NBC.ipynb
+++ b/notebooks/AGIPD/Characterize_AGIPD_Gain_Darks_NBC.ipynb
@@ -25,13 +25,13 @@
    "outputs": [],
    "source": [
     "cluster_profile = \"noDB\" # The ipcluster profile to use\n",
-    "in_folder = \"/gpfs/exfel/d/raw/SPB/202030/p900138/\" # path to input data, required\n",
+    "in_folder = \"/gpfs/exfel/d/raw/SPB/202030/p900138\" # path to input data, required\n",
     "out_folder = \"/gpfs/exfel/data/scratch/ahmedk/test/AGIPDb1\" # path to output to, required\n",
     "sequences = [0] # sequence files to evaluate.\n",
     "modules = [-1]  # list of modules to evaluate, RANGE ALLOWED\n",
-    "run_high = 264 # run number in which high gain data was recorded, required\n",
-    "run_med = 265 # run number in which medium gain data was recorded, required\n",
-    "run_low = 266 # run number in which low gain data was recorded, required\n",
+    "run_high = 199 # run number in which high gain data was recorded, required\n",
+    "run_med = 201 # run number in which medium gain data was recorded, required\n",
+    "run_low = 202 # run number in which low gain data was recorded, required\n",
     "\n",
     "karabo_id = \"SPB_DET_AGIPD1M-1\" # karabo karabo_id\n",
     "karabo_da = [-1]  # data aggregators\n",
@@ -40,8 +40,8 @@
     "h5path = '/INSTRUMENT/{}/DET/{}:xtdf/image' # path in the HDF5 file to images\n",
     "h5path_idx = '/INDEX/{}/DET/{}:xtdf/image' # path in the HDF5 file to images\n",
     "h5path_ctrl = '/CONTROL/{}/MDL/FPGA_COMP_TEST' # path to control information\n",
-    "karabo_id_control = \"SPB_IRU_AGIPD1M1\" # karabo-id for control device\n",
-    "karabo_da_control = 'DA02' # karabo DA for control infromation\n",
+    "karabo_id_control = \"SPB_IRU_AGIPD1M1\" # karabo-id for control device '\n",
+    "karabo_da_control = \"AGIPD1MCTRL00\" # karabo DA for control infromation\n",
     "\n",
     "use_dir_creation_date = True  # use dir creation date as data production reference date\n",
     "cal_db_interface = \"tcp://max-exfl016:8020\" # the database interface to use\n",
@@ -193,10 +193,10 @@
     "    karabo_da = [\"AGIPD{:02d}\".format(i) for i in modules]\n",
     "else:\n",
     "    modules = [int(x[-2:]) for x in karabo_da]\n",
-    "\n",
     "h5path = h5path.format(karabo_id, receiver_id)\n",
     "h5path_idx = h5path_idx.format(karabo_id, receiver_id)\n",
-    "h5path_ctrl = h5path_ctrl.format(karabo_id_control)\n",
+    "if '{' in h5path_ctrl:\n",
+    "    h5path_ctrl = h5path_ctrl.format(karabo_id_control)\n",
     "\n",
     "print(\"Parameters are:\")\n",
     "print(f\"Proposal: {prop}\")\n",
@@ -367,7 +367,7 @@
     "noise = None\n",
     "if thresholds_offset_hard == [0, 0]:\n",
     "    thresholds_offset_hard = [thresholds_offset_hard_hg, thresholds_offset_hard_mg, thresholds_offset_hard_lg]\n",
-    "if thresholds_noise_hard == [0, 0]\n",
+    "if thresholds_noise_hard == [0, 0]:\n",
     "    thresholds_noise_hard = [thresholds_noise_hard_hg, thresholds_noise_hard_mg, thresholds_noise_hard_lg]\n",
     "for gain, mapped_files in gain_mapped_files.items():\n",
     "\n",