Skip to content
Snippets Groups Projects
Commit e8c5f1e7 authored by Aaron Viets's avatar Aaron Viets
Browse files

gstlal_compute_strain: If using actuation pcal line for SRC detuning...

gstlal_compute_strain:  If using actuation pcal line for SRC detuning parameters, use the corresponding front-end channel to update the frequency.
parent 897f32d6
No related branches found
No related tags found
No related merge requests found
...@@ -1444,6 +1444,9 @@ if compute_fs or compute_srcq: ...@@ -1444,6 +1444,9 @@ if compute_fs or compute_srcq:
if "pcal4_linefreq" in head_dict: if "pcal4_linefreq" in head_dict:
head_dict["pcal4_linefreq"].connect("notify::current-average", calibration_parts.update_property_simple, smooth_fs, "current_average", "amplification") head_dict["pcal4_linefreq"].connect("notify::current-average", calibration_parts.update_property_simple, smooth_fs, "current_average", "amplification")
head_dict["pcal4_linefreq"].connect("notify::current-average", calibration_parts.update_property_simple, smooth_fs_nogate, "current_average", "amplification") head_dict["pcal4_linefreq"].connect("notify::current-average", calibration_parts.update_property_simple, smooth_fs_nogate, "current_average", "amplification")
elif src_pcal_line_freq == act_pcal_line_freq and "pcal1_linefreq" in head_dict:
head_dict["pcal1_linefreq"].connect("notify::current-average", calibration_parts.update_property_simple, smooth_fs, "current_average", "amplification")
head_dict["pcal1_linefreq"].connect("notify::current-average", calibration_parts.update_property_simple, smooth_fs_nogate, "current_average", "amplification")
if compute_calib_statevector or apply_fs: if compute_calib_statevector or apply_fs:
smooth_fs = pipeparts.mktee(pipeline, smooth_fs) smooth_fs = pipeparts.mktee(pipeline, smooth_fs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment