Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Timothy Brandt committed Dec 17, 2024
1 parent 6d48e9a commit 3ab5ff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stcal/ramp_fitting/ols_cas22/_ramp.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 3ab5ff4

Please sign in to comment.