Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Hckjs committed May 6, 2024
1 parent 091eceb commit 7288e9b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/ctapipe/image/cleaning.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,9 @@ def mars_cleaning_1st_pass(
min_number_picture_neighbors=0,
):
"""
Clean an image by select pixels that pass a three-threshold tail-cuts
Clean an image by selecting pixels that pass a three-threshold tail-cuts
procedure.
All thresholds are defined with respect to the pedestal
dispersion. All pixels that have a signal higher than the core (picture)
threshold will be retained, along with all those above the boundary
Expand Down
9 changes: 8 additions & 1 deletion src/ctapipe/image/statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@

from ..containers import StatisticsContainer

__all__ = ["n_largest", "descriptive_statistics", "skewness", "kurtosis"]
__all__ = [
"arg_n_largest",
"arg_n_largest_gu",
"n_largest",
"descriptive_statistics",
"skewness",
"kurtosis",
]


@njit(cache=True)
Expand Down

0 comments on commit 7288e9b

Please sign in to comment.