From d953b62d052fe2b9ea8f0d8af3fb61f814b05513 Mon Sep 17 00:00:00 2001 From: Elisa-Visentin <121040436+Elisa-Visentin@users.noreply.github.com> Date: Mon, 23 Sep 2024 08:30:54 +0200 Subject: [PATCH] fix combo --- notebooks/check_signal_from_dl2.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notebooks/check_signal_from_dl2.ipynb b/notebooks/check_signal_from_dl2.ipynb index 997d7113d..719a8fb35 100644 --- a/notebooks/check_signal_from_dl2.ipynb +++ b/notebooks/check_signal_from_dl2.ipynb @@ -628,7 +628,7 @@ "# Exclude the MAGIC-stereo combination events, since they are\n", "# poorly reconstructred with the current analysis scheme\n", "print(\"Excluding the MAGIC-stereo combination events...\")\n", - "event_data.query(\"combo_type != 0\", inplace=True)\n", + "event_data.query(\"combo_type != 3\", inplace=True)\n", "\n", "# Show the data frame\n", "event_data.head()" @@ -1253,7 +1253,7 @@ "# === Settings ===\n", "# ================\n", "\n", - "combo_types = [3]\n", + "combo_types = [1]\n", "cut_value_gh = 0.8\n", "\n", "# ============\n",