diff --git a/notebooks/DSSC/Characterize_DSSC_Darks_NBC.ipynb b/notebooks/DSSC/Characterize_DSSC_Darks_NBC.ipynb
index dcbd68882f598b217153d22ec0ec6018006eae60..7a26f2ddd3ccaef82ee69ebb795d88d97d9f97d6 100644
--- a/notebooks/DSSC/Characterize_DSSC_Darks_NBC.ipynb
+++ b/notebooks/DSSC/Characterize_DSSC_Darks_NBC.ipynb
@@ -479,7 +479,7 @@
     "mnames = []\n",
     "for i in modules:\n",
     "    qm = f\"Q{i//4+1}M{i % 4+1}\"\n",
-    "    display(Markdown(f'## Position of the module {mnames} and it\\'s ASICs##'))\n",
+    "    display(Markdown(f'## Position of the module {qm} and it\\'s ASICs##'))\n",
     "    mnames.append(qm)\n",
     "    \n",
     "show_processed_modules(dinstance=dinstance, constants=None, mnames=mnames, mode=\"position\")\n"
diff --git a/notebooks/FastCCD/Characterize_Darks_NewDAQ_FastCCD_NBC_New_Common_Mode.ipynb b/notebooks/FastCCD/Characterize_Darks_NewDAQ_FastCCD_NBC_New_Common_Mode.ipynb
index 0c4d704014d69db5f4b346c61b1d180a95d0fbae..e091b4bbe86fed79084e9ae53ce6a4083f74a754 100644
--- a/notebooks/FastCCD/Characterize_Darks_NewDAQ_FastCCD_NBC_New_Common_Mode.ipynb
+++ b/notebooks/FastCCD/Characterize_Darks_NewDAQ_FastCCD_NBC_New_Common_Mode.ipynb
@@ -89,7 +89,8 @@
     "import numpy as np\n",
     "from prettytable import PrettyTable\n",
     "\n",
-    "from cal_tools.tools import get_dir_creation_date, get_random_db_interface, save_const_to_h5\n",
+    "from cal_tools.tools import (get_dir_creation_date, get_random_db_interface,\n",
+    "                             save_const_to_h5, send_to_db)\n",
     "from cal_tools.enums import BadPixels\n",
     "from iCalibrationDB import Constants, Conditions, Detectors, Versions\n",
     "from iCalibrationDB.detectors import DetectorTypes\n",
@@ -1121,8 +1122,7 @@
     "        \n",
     "print(\"Constants parameter conditions are:\\n\")\n",
     "print(f\"• bias_voltage: {bias_voltage}\\n• integration_time: {integration_time}\\n\"\n",
-    "      f\"• temperature: {temperature_k}\\n• gain_setting: {gain_setting}\\n\"\n",
-    "      f\"• in_vacuum: {in_vacuum}\\n\"\n",
+    "      f\"• temperature: {fix_temperature}\\n• gain_setting: {det_gain}\\n\"\n",
     "      f\"• creation_time: {md.calibration_constant_version.begin_at if md is not None else creation_time}\\n\")"
    ]
   }
diff --git a/notebooks/ePix10K/Characterize_Darks_ePix10K_NBC.ipynb b/notebooks/ePix10K/Characterize_Darks_ePix10K_NBC.ipynb
index 536f8b04b99453c5c95f9c86ce636ed9cae6871a..31fecbcc79175e072b8b921722507b53e619c7a6 100644
--- a/notebooks/ePix10K/Characterize_Darks_ePix10K_NBC.ipynb
+++ b/notebooks/ePix10K/Characterize_Darks_ePix10K_NBC.ipynb
@@ -284,7 +284,7 @@
     "    device = getattr(Detectors, db_module)\n",
     "    \n",
     "    if db_output:\n",
-    "        md = send_to_db(device, const, const.data, condition, file_loc, \n",
+    "        md = send_to_db(device, const, condition, file_loc, \n",
     "                        cal_db_interface, creation_time=creation_time, timeout=cal_db_timeout)\n",
     "\n",
     "    if local_output:\n",
diff --git a/notebooks/pnCCD/Correct_pnCCD_NBC.ipynb b/notebooks/pnCCD/Correct_pnCCD_NBC.ipynb
index 18c45d5bd17fc41c4b881ecbe37fcfd30e2facac..094bbec2d14b8fe54dba4cfb4cf703aad95749b5 100644
--- a/notebooks/pnCCD/Correct_pnCCD_NBC.ipynb
+++ b/notebooks/pnCCD/Correct_pnCCD_NBC.ipynb
@@ -38,7 +38,7 @@
     "h5path_ctrl = '/CONTROL/{}/CTRL/TCTRL'\n",
     "\n",
     "overwrite = True # keep this as True to not overwrite the output \n",
-    "use_dir_creation_date = True # required to obtain creation time of the run\n",
+    "use_dir_creation_date = True # To obtain creation time of the run\n",
     "number_dark_frames = 0 # number of images to be used, if set to 0 all available images are used\n",
     "chunk_size_idim = 1 # H5 chunking size of output data\n",
     "cluster_profile = \"noDB\" # ipcluster profile to use\n",
@@ -1209,8 +1209,9 @@
     "# Resetting the histogram calculators:\n",
     "histCalRaw.reset()\n",
     "histCalOffsetCor.reset()\n",
-    "histCalPcorr.reset()\n",
-    "histCalPcorrS.reset()\n",
+    "if corr_bools.get('pattern_class'):\n",
+    "    histCalPcorr.reset()\n",
+    "    histCalPcorrS.reset()\n",
     "if corr_bools.get('common_mode'):\n",
     "    histCalCommonModeCor.reset()\n",
     "if corr_bools.get('relgain'):\n",