diff --git a/notebooks/AGIPD/Characterize_AGIPD_Gain_FlatFields_NBC.ipynb b/notebooks/AGIPD/Characterize_AGIPD_Gain_FlatFields_NBC.ipynb
index 7c49c3c895e4672d4f4c00e8c48fa4dddf0c8026..99a185e0f2b5e49571bed914178a0a6febfb815a 100644
--- a/notebooks/AGIPD/Characterize_AGIPD_Gain_FlatFields_NBC.ipynb
+++ b/notebooks/AGIPD/Characterize_AGIPD_Gain_FlatFields_NBC.ipynb
@@ -26,11 +26,7 @@
     "\n",
     "karabo_id = \"MID_DET_AGIPD1M-1\" # karabo karabo_id\n",
     "karabo_da = ['-1']  # a list of data aggregators names, Default [-1] for selecting all data aggregators\n",
-    "receiver_id = \"{}CH0\" # inset for receiver devices\n",
-    "path_template = 'RAW-R{:04d}-{}-S{:05d}.h5' # the template to use to access data\n",
-    "h5path = 'INSTRUMENT/{}/DET/{}:xtdf/' # path in the HDF5 file to images\n",
-    "h5path_idx = 'INDEX/{}/DET/{}:xtdf/' # path in the HDF5 file to images\n",
-    "h5path_ctrl = '/CONTROL/{}/MDL/FPGA_COMP' # path to control information\n",
+    "ctrl_source_template = '{}/MDL/FPGA_COMP' # path to control information\n",
     "karabo_id_control = \"MID_IRU_AGIPD1M1\" # karabo-id for control device\n",
     "karabo_da_control = 'AGIPD1MCTRL00' # karabo DA for control infromation\n",
     "\n",
diff --git a/notebooks/AGIPD/Characterize_AGIPD_Gain_FlatFields_Summary.ipynb b/notebooks/AGIPD/Characterize_AGIPD_Gain_FlatFields_Summary.ipynb
index fd9a711612d18f42fac4fe391b788f37dcf1df4c..4285876bfdbe3c0a49dc9e6de66a36877f10dd2c 100644
--- a/notebooks/AGIPD/Characterize_AGIPD_Gain_FlatFields_Summary.ipynb
+++ b/notebooks/AGIPD/Characterize_AGIPD_Gain_FlatFields_Summary.ipynb
@@ -34,21 +34,14 @@
     "\n",
     "# Fit parameters\n",
     "peak_range = [-30,30,35,65,80,130,145,200] # where to look for the peaks, [a0, b0, a1, b1, ...] exactly 8 elements\n",
-    "peak_width_range = [0, 30, 0, 35, 0, 40, 0, 45] # fit limits on the peak widths, [a0, b0, a1, b1, ...] exactly 8 elements\n",
     "\n",
     "# Bad-pixel thresholds\n",
     "d0_lim = [10, 70] # hard limits for d0 value (distance between noise and first peak)\n",
-    "peak_width_lim = [0.97, 1.43, 1.03, 1.57] # hard limits on the peak widths, [a0, b0, a1, b1, ...] in units of the noise peak. 4 parameters.\n",
-    "chi2_lim = [0,3.0] # Hard limit on chi2/nDOF value\n",
     "gain_lim = [0.80, 1.2] # Threshold on gain in relative number. Contribute to BadPixel bit \"Gain_deviation\"\n",
     "\n",
     "cell_range = [1,5] # range of cell to be considered, [0,0] for all\n",
     "pixel_range = [0,0,512,128] # range of pixels x1,y1,x2,y2 to consider [0,0,512,128] for all\n",
-    "max_bins = 250 # Maximum number of bins to consider\n",
-    "batch_size = [1,8,8] # batch size: [cell,x,y]\n",
     "n_peaks_fit = 4 # Number of gaussian peaks to fit including noise peak\n",
-    "fix_peaks = True # Fix distance between photon peaks\n",
-    "\n",
     "\n",
     "# Detector conditions\n",
     "mem_cells = -1  # number of memory cells used, negative values for auto-detection.\n",
@@ -65,7 +58,6 @@
    "metadata": {},
    "outputs": [],
    "source": [
-    "import glob\n",
     "import os\n",
     "import re\n",
     "import traceback\n",
@@ -93,13 +85,11 @@
     "    module_index_to_qm,\n",
     "    send_to_db\n",
     ")\n",
-    "from dateutil import parser\n",
-    "from extra_data import H5File, RunDirectory, stack_detector_data\n",
+    "from extra_data import RunDirectory, stack_detector_data\n",
     "from extra_geom import AGIPD_1MGeometry, AGIPD_500K2GGeometry\n",
-    "from iCalibrationDB import Conditions, Constants, Detectors\n",
+    "from iCalibrationDB import Conditions, Constants\n",
     "from iminuit import Minuit\n",
-    "from IPython.display import HTML, Latex, Markdown, display\n",
-    "from XFELDetAna.plotting.heatmap import heatmapPlot\n",
+    "from IPython.display import Latex, display\n",
     "from XFELDetAna.plotting.simpleplot import simplePlot\n",
     "\n",
     "%matplotlib inline\n",