From 14399c204a3f5d73f62588b14f9c28ad009e4c20 Mon Sep 17 00:00:00 2001 From: Abelardo Moralejo Date: Fri, 18 Oct 2024 14:03:31 +0200 Subject: [PATCH] Corrected comment --- lstchain/high_level/hdu_table.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lstchain/high_level/hdu_table.py b/lstchain/high_level/hdu_table.py index 727cd1ad2..f5fcdcc94 100644 --- a/lstchain/high_level/hdu_table.py +++ b/lstchain/high_level/hdu_table.py @@ -276,8 +276,8 @@ def get_pointing_params(data, source_pos, time_utc, exclude_fraction=0.2): pointing_az = data["pointing_az"] max_off_angle = 0.05 * u.deg - # Keep track of how often pointing is beyond max_off_angle w.r.t. the median - # run pointing + # Keep track of how often pointing is beyond max_off_angle w.r.t. the mean + # run pointing (computed excluding the beginning of run - see exclude_fraction) # If median of the angle between the pointing directions and their mean in the run # is larger than max_median_angle a warning will be displayed about unstable pointing.