From 22e93c62c705d68e3e5e273fed9322c3dc8250fc Mon Sep 17 00:00:00 2001
From: ahmedk <karim.ahmed@xfel.eu>
Date: Fri, 18 Mar 2022 11:51:08 +0100
Subject: [PATCH] Remove pc_bools flag condition from gain_correction

---
 notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb b/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb
index 962d0d6cb..932269330 100644
--- a/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb
+++ b/notebooks/AGIPD/AGIPD_Correct_and_Verify.ipynb
@@ -668,11 +668,9 @@
     "\n",
     "            img_counts = pool.map(agipd_corr.apply_selected_pulses, range(len(file_batch)))\n",
     "            step_timer.done_step(\"Applying selected cells after common mode correction\")\n",
-    "\n",
-    "        # Perform image-wise correction\n",
-    "        if any(agipd_corr.pc_bools):\n",
-    "            pool.starmap(agipd_corr.gain_correction, imagewise_chunks(img_counts))\n",
-    "            step_timer.done_step(\"Gain corrections\")\n",
+    "        # Perform image-wise correction\"\n",
+    "        pool.starmap(agipd_corr.gain_correction, imagewise_chunks(img_counts))\n",
+    "        step_timer.done_step(\"Gain corrections\")\n",
     "\n",
     "        # Save corrected data\n",
     "        pool.starmap(agipd_corr.write_file, [\n",
-- 
GitLab