Skip to content

Commit

Permalink
uncomment lines that were remove during debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhundhausen committed Oct 22, 2024
1 parent 5b6e8c4 commit 7bc8eb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions menu_tools/object_performance/plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ def _save_json(self, file_name):
yerr = np.array(
[yerr[0][~np.isnan(efficiency)], yerr[1][~np.isnan(efficiency)]]
)
# xerr = xerr[np.isfinite(efficiency)]
# xbins = xbins[np.isfinite(efficiency)]
# efficiency = efficiency[np.isfinite(efficiency)]
xerr = xerr[np.isfinite(efficiency)]
xbins = xbins[np.isfinite(efficiency)]
efficiency = efficiency[np.isfinite(efficiency)]

xerr = xerr.tolist()
yerr = yerr.tolist()
Expand Down

0 comments on commit 7bc8eb2

Please sign in to comment.