From 2e20e1056e8e2ecc2645734313acf82109f4f1ee Mon Sep 17 00:00:00 2001 From: Chris Papageorgakis Date: Mon, 2 Dec 2024 12:39:17 -0500 Subject: [PATCH] Fix typo in definition of constituents (pt instead of p) --- 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: