From 791e6fbfe40aee5fa5bcbdaf7624de3165bd3250 Mon Sep 17 00:00:00 2001 From: Tomas Bylund Date: Mon, 28 Aug 2023 15:20:03 +0200 Subject: [PATCH] Updated some comments to avoid problems with the doctest --- ctapipe/irf/irf_classes.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/ctapipe/irf/irf_classes.py b/ctapipe/irf/irf_classes.py index ba4ac9f5a03..2122ad79d12 100644 --- a/ctapipe/irf/irf_classes.py +++ b/ctapipe/irf/irf_classes.py @@ -313,13 +313,6 @@ class DataBinning(Component): def true_energy_bins(self): """ Creates bins per decade for true MC energy using pyirf function. - The overflow binning added is not needed at the current stage. - - Examples - -------- - It can be used as: - - >>> add_overflow_bins(***)[1:-1] """ true_energy = create_bins_per_decade( self.true_energy_min * u.TeV, @@ -331,13 +324,6 @@ def true_energy_bins(self): def reco_energy_bins(self): """ Creates bins per decade for reconstructed MC energy using pyirf function. - The overflow binning added is not needed at the current stage. - - Examples - -------- - It can be used as: - - >>> add_overflow_bins(***)[1:-1] """ reco_energy = create_bins_per_decade( self.reco_energy_min * u.TeV,