From 3ab5ff48e3f9bf13fc1a5422659fb6b8ac5a79a3 Mon Sep 17 00:00:00 2001 From: Timothy Brandt Date: Tue, 17 Dec 2024 13:43:31 -0500 Subject: [PATCH] Fixed typo --- src/stcal/ramp_fitting/ols_cas22/_ramp.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stcal/ramp_fitting/ols_cas22/_ramp.pyx b/src/stcal/ramp_fitting/ols_cas22/_ramp.pyx index cd0479a5..e8062952 100644 --- a/src/stcal/ramp_fitting/ols_cas22/_ramp.pyx +++ b/src/stcal/ramp_fitting/ols_cas22/_ramp.pyx @@ -353,6 +353,6 @@ cdef inline RampFit fit_ramp(float[:] resultants_, # Note that the second sum in Castertano+22 has a term that can be # updated iteratively. That is used here to avoid a nested for loop. ramp_fit.poisson_var += coeff ** 2 * tau[i] + 2 * coeff * sum_coeffs_tbar - sum_coeffs_tbar += coeff * tbar[i] + sum_coeffs_tbar += coeff * t_bar[i] return ramp_fit