diff --git a/notebooks/Gotthard2/Correction_Gotthard2_NBC.ipynb b/notebooks/Gotthard2/Correction_Gotthard2_NBC.ipynb
index 6e2fb4f6e9dd0dc3e51162f22f87512acbed4be0..a994b180c6cc2d039212df3ed26ce1e147f1c13e 100644
--- a/notebooks/Gotthard2/Correction_Gotthard2_NBC.ipynb
+++ b/notebooks/Gotthard2/Correction_Gotthard2_NBC.ipynb
@@ -98,7 +98,6 @@
     "ctrl_src = ctrl_source_template.format(karabo_id_control, control_template)\n",
     "\n",
     "print(f\"Run is: {run}\")\n",
-    "print(f\"Instrument H5File source: {instrument_src}\")\n",
     "print(f\"Process modules: {karabo_da}\")\n",
     "\n",
     "creation_time = None\n",
@@ -117,16 +116,24 @@
    "metadata": {},
    "outputs": [],
    "source": [
-    "seq_nums = {int(Path(sf.filename).stem[-5:]) for sf in run_dc.select(f\"*{karabo_id}*\").files}\n",
-    "sequences = list(set(sequences).intersection(seq_nums) if sequences != [-1] else seq_nums)\n",
+    "# Select only process detector.\n",
+    "\n",
+    "if sequences != [-1]:\n",
+    "    seq_files = []\n",
+    "    for f in run_dc.select(f\"*{karabo_id}*\").files:\n",
+    "        raw_f = Path(f.filename)\n",
+    "        for s in sequences:\n",
+    "            if raw_f.match(f\"*-S{s:05d}.h5\"):\n",
+    "                seq_files.append(raw_f)\n",
+    "else:\n",
+    "    seq_files = [Path(f.filename) for f in run_dc.select(f\"*{karabo_id}*\").files]\n",
     "\n",
-    "seq_files = [Path(f.filename) for f in run_dc.select(f\"*{karabo_id}*\").files]\n",
-    "seq_files = [f for f in seq_files if any(f.match(f\"*-S{s:05d}.h5\") for s in sequences)]\n",
+    "seq_files = sorted(seq_files)\n",
     "\n",
-    "if not len(sequences):\n",
+    "if not len(seq_files):\n",
     "    raise IndexError(\"No sequence files available for the selected sequences.\")\n",
     "\n",
-    "print(f\"Processing a total of {len(sequences)} sequence files\")"
+    "print(f\"Processing a total of {len(seq_files)} sequence files\")"
    ]
   },
   {
@@ -283,16 +290,15 @@
    "outputs": [],
    "source": [
     "mod_dcs = {}\n",
-    "plt_seq = sequences[0]\n",
-    "for kda in karabo_da:\n",
-    "    mod_dcs[kda] = {}\n",
-    "    # Todo test this and add comment\n",
-    "    with RunDirectory(out_folder, f\"*{kda}*S{plt_seq:05d}*\") as out_dc:\n",
-    "        tid, mod_dcs[kda][\"train_corr_data\"] = next(out_dc[instr_mod_src, \"data.adc\"].trains())\n",
-    "    with RunDirectory(run_folder, f\"*{kda}*S{plt_seq:05d}*\") as in_dc:\n",
+    "for mod in karabo_da:\n",
+    "    mod_dcs[mod] = {}\n",
+    "    with RunDirectory(out_folder) as out_dc:\n",
+    "        tid, mod_dcs[mod][\"train_corr_data\"] = next(\n",
+    "            out_dc[instr_mod_src, \"data.adc\"].trains())\n",
+    "    with RunDirectory(run_folder) as in_dc:\n",
     "        train_dict = in_dc.train_from_id(tid)[1][instr_mod_src]\n",
-    "        mod_dcs[kda][\"train_raw_data\"] = train_dict[\"data.adc\"]\n",
-    "        mod_dcs[kda][\"train_raw_gain\"] = train_dict[\"data.gain\"]"
+    "        mod_dcs[mod][\"train_raw_data\"] = train_dict[\"data.adc\"]\n",
+    "        mod_dcs[mod][\"train_raw_gain\"] = train_dict[\"data.gain\"]"
    ]
   },
   {
@@ -303,14 +309,14 @@
    "outputs": [],
    "source": [
     "display(Markdown(\"### Mean RAW across pulses for one train:\"))\n",
-    "display(Markdown(f\"The per pixel mean of sequence file {plt_seq} for train: {tid}\"))\n",
+    "display(Markdown(f\"Train: {tid}\"))\n",
     "\n",
     "step_timer.start()\n",
-    "for kda in karabo_da:\n",
-    "    raw_data = mod_dcs[kda][\"train_raw_data\"]\n",
+    "for mod in karabo_da:\n",
+    "    raw_data = mod_dcs[mod][\"train_raw_data\"]\n",
     "    fig, ax = plt.subplots(figsize=(20, 10))\n",
     "    im = ax.plot(np.mean(raw_data, axis=0))\n",
-    "    ax.set_title(f'Module {kda}')\n",
+    "    ax.set_title(f'Module {mod}')\n",
     "    ax.set_xlabel(\"Strip #\", size=15)\n",
     "    ax.set_ylabel(\"12-bit ADC output\", size=15)\n",
     "step_timer.done_step(\"Plotting raw data\")"
@@ -324,14 +330,14 @@
    "outputs": [],
    "source": [
     "display(Markdown(\"### Mean CORRECTED across pulses for one train:\"))\n",
-    "display(Markdown(f\"The per pixel mean of sequence file {plt_seq} for train: {tid}\"))\n",
+    "display(Markdown(f\"Train: {tid}\"))\n",
     "\n",
     "step_timer.start()\n",
-    "for kda in karabo_da:\n",
-    "    corr_data = mod_dcs[kda][\"train_corr_data\"]\n",
+    "for mod in karabo_da:\n",
+    "    corr_data = mod_dcs[mod][\"train_corr_data\"]\n",
     "    fig, ax = plt.subplots(figsize=(20, 10))\n",
     "    im = ax.plot(np.mean(corr_data, axis=0))\n",
-    "    ax.set_title(f'Module {kda}')\n",
+    "    ax.set_title(f'Module {mod}')\n",
     "    ax.set_xlabel(\"Strip #\", size=15)\n",
     "    ax.set_ylabel(\"10-bit ADC output\", size=15)\n",
     "step_timer.done_step(\"Plotting corrected data\")"
@@ -372,14 +378,14 @@
    "outputs": [],
    "source": [
     "display(Markdown(\"### RAW even/odd pulses for one train:\"))\n",
-    "display(Markdown(f\"The RAW selected pulses of sequence file {plt_seq} for train: {tid}\"))\n",
-    "for kda in karabo_da:\n",
-    "    raw_data = mod_dcs[kda][\"train_raw_data\"]\n",
+    "display(Markdown(f\"RAW train: {tid}\"))\n",
+    "for mod in karabo_da:\n",
+    "    raw_data = mod_dcs[mod][\"train_raw_data\"]\n",
     "    fig, ax = plt.subplots(figsize=(20, 10))\n",
     "    ax.plot(raw_data[odd_pulse], label=f\"Odd Pulse {odd_pulse}\")\n",
     "    if even_pulse:\n",
     "        ax.plot(raw_data[even_pulse], label=f\"Even Pulse {even_pulse}\")\n",
-    "    ax.set_title(f'Module {kda}')\n",
+    "    ax.set_title(f'Module {mod}')\n",
     "    ax.set_xlabel(\"Strip #\", size=15)\n",
     "    ax.set_ylabel(\"12-bit ADC output\", size=15)\n",
     "    ax.legend()\n",
@@ -404,14 +410,14 @@
    "outputs": [],
    "source": [
     "display(Markdown(\"### CORRECTED even/odd pulses for one train:\"))\n",
-    "display(Markdown(f\"The CORRECTED selected pulses of sequence file {plt_seq} for train: {tid}\"))\n",
-    "for kda in karabo_da:\n",
-    "    corr_data = mod_dcs[kda][\"train_corr_data\"]\n",
+    "display(Markdown(f\"CORRECTED train: {tid}\"))\n",
+    "for mod in karabo_da:\n",
+    "    corr_data = mod_dcs[mod][\"train_corr_data\"]\n",
     "    fig, ax = plt.subplots(figsize=(20, 10))\n",
     "    ax.plot(corr_data[odd_pulse], label=f\"Odd Pulse {odd_pulse}\")\n",
     "    if even_pulse:\n",
     "        ax.plot(corr_data[even_pulse], label=f\"Even Pulse {even_pulse}\")\n",
-    "    ax.set_title(f'Module {kda}')\n",
+    "    ax.set_title(f'Module {mod}')\n",
     "    ax.set_xlabel(\"Strip #\", size=15)\n",
     "    ax.set_ylabel(\"12-bit ADC output\", size=15)\n",
     "    ax.legend()\n",
diff --git a/setup.py b/setup.py
index c1d0e0911362c00efd74f1062248c99737cfc789..3e80af1ee68f1976ba8d9d8f236d2a5b9518306d 100644
--- a/setup.py
+++ b/setup.py
@@ -25,6 +25,12 @@ ext_modules = [
                             '-ftree-vectorize', '-frename-registers'],
         extra_link_args=['-fopenmp'],
     )
+        "cal_tools.gotthard2.gotthard2algs",
+        ["src/cal_tools/gotthard2/gotthard2algs.pyx"],
+        include_dirs=[numpy.get_include()],
+        extra_compile_args=["-fopenmp", "-march=native"],
+        extra_link_args=["-fopenmp"],
+    ),
 ]