From 10f8bc8248336f3da8aff1fcf422257d35d3649e Mon Sep 17 00:00:00 2001 From: Chris Papageorgakis Date: Mon, 2 Dec 2024 15:15:52 -0500 Subject: [PATCH] fix: Fix typo in definition of constituents (min_pt instead of min_p) (#326) --- src/fastjet/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastjet/__init__.py b/src/fastjet/__init__.py index d12c161c..a3726bf4 100644 --- a/src/fastjet/__init__.py +++ b/src/fastjet/__init__.py @@ -347,7 +347,7 @@ def exclusive_jets_constituents_index(self, njets: int = 10) -> ak.Array: raise AssertionError() - def constituents(self, min_p: float = 0) -> ak.Array: + def constituents(self, min_pt: float = 0) -> ak.Array: """Returns the particles that make up each Jet. Args: