From 7de15fe29df45306ccc34a846bdc35b486d06d1b Mon Sep 17 00:00:00 2001 From: Ken MacDonald Date: Thu, 14 Dec 2023 15:04:46 -0500 Subject: [PATCH] Updating the ramp fit OLS code for use of C code. --- src/stcal/ramp_fitting/ols_fit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stcal/ramp_fitting/ols_fit.py b/src/stcal/ramp_fitting/ols_fit.py index 5baf8c216..0b5bda7ab 100644 --- a/src/stcal/ramp_fitting/ols_fit.py +++ b/src/stcal/ramp_fitting/ols_fit.py @@ -658,8 +658,8 @@ def ols_ramp_fit_single(ramp_data, buffsize, save_opt, readnoise_2d, gain_2d, we The tuple of computed optional results arrays for fitting. """ - use_c = False - # use_c = True + # use_c = False + use_c = True if use_c: print(" ") print("=" * 80)