diff --git a/gstlal-calibration/bin/gstlal_compute_strain b/gstlal-calibration/bin/gstlal_compute_strain index eb8620b62b7adbb25da05a348abb06fd6e37715c..f8b259e3603696013e2f3e10cd3d7f35cf94f160 100755 --- a/gstlal-calibration/bin/gstlal_compute_strain +++ b/gstlal-calibration/bin/gstlal_compute_strain @@ -846,7 +846,7 @@ if not options.no_kappac or not options.no_fcc or not options.no_kappapu or not kpu = pipeparts.mktee(pipeline, kpu) - # Put off smoothing \kappa_pu until after \kappa_tst is computed in case we are correcting the phase of \kappa_pu using \kappa_tst + # Put off smoothing \kappa_pu in case we are correcting the phase of \kappa_pu using \kappa_tst # If desired, correct the phase of \kappa_pu using \kappa_tst (This assumes that all stages of actuation have the same variable time delay, and that \kappa_tst is doing a better job of measuring it) if options.act_timing_from_kappatst: diff --git a/gstlal-calibration/python/calibration_parts.py b/gstlal-calibration/python/calibration_parts.py index bf79dab28d871383b71384a401aa48667a782ef4..989812163e240b7de0db7568985f447dc3709bff 100644 --- a/gstlal-calibration/python/calibration_parts.py +++ b/gstlal-calibration/python/calibration_parts.py @@ -383,7 +383,7 @@ def compute_rms(pipeline, head, rate, average_time, f_min = None, f_max = None, head = mkpow(pipeline, head, exponent = 2.0) # Downsample again to save computational cost - head = mkresample(pipeline, head, 3, filter_latency == 0.0, rate_out) + head = mkresample(pipeline, head, 4, filter_latency == 0.0, rate_out) # Compute running average head = pipeparts.mkgeneric(pipeline, head, "lal_smoothkappas", default_kappa_re = 0.0, array_size = 1, avg_array_size = average_time * rate_out, filter_latency = filter_latency)