Skip to content

Commit

Permalink
Merge pull request #263 from cta-observatory/fix_nb
Browse files Browse the repository at this point in the history
fix combo in DL2 real data nb
  • Loading branch information
Elisa-Visentin authored Sep 23, 2024
2 parents 49e9977 + d953b62 commit 5a8d21d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notebooks/check_signal_from_dl2.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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()"
Expand Down Expand Up @@ -1253,7 +1253,7 @@
"# === Settings ===\n",
"# ================\n",
"\n",
"combo_types = [3]\n",
"combo_types = [1]\n",
"cut_value_gh = 0.8\n",
"\n",
"# ============\n",
Expand Down

0 comments on commit 5a8d21d

Please sign in to comment.