From 7d3ffaf6fb6300ea890d5cd43d10e09735b005cb Mon Sep 17 00:00:00 2001 From: Jonas Eschle Date: Fri, 15 Mar 2024 14:28:37 -0400 Subject: [PATCH] remove typo --- zfit_physics/models/pdf_cmsshape.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/zfit_physics/models/pdf_cmsshape.py b/zfit_physics/models/pdf_cmsshape.py index 58c4324..d29de7e 100644 --- a/zfit_physics/models/pdf_cmsshape.py +++ b/zfit_physics/models/pdf_cmsshape.py @@ -31,16 +31,6 @@ def cmsshape_pdf_func(x, m, beta, gamma): t2 = tf.math.erfc(-beta * (x - m)) t3 = half * gamma * tf.math.exp(-((half * gamma / beta) ** two)) return t1 * t2 * t3 - """Calculates the analytic integral of the relativistic Breit-Wigner PDF. - - Args: - limits: An object with attribute rect_limits. - params: A hashmap from which the parameters that defines the PDF will be extracted. - model: Will be ignored. - - Returns: - The calculated integral. - """ @z.function(wraps="tensor")