From 82a541177a26c28142e9bb99170cc5496e1a04ce Mon Sep 17 00:00:00 2001 From: Aaron Viets <aaron.viets@ligo.org> Date: Wed, 26 Sep 2018 22:19:33 -0500 Subject: [PATCH] gstlal_compute_strain: Don't always write transfer functions to file. --- gstlal-calibration/bin/gstlal_compute_strain | 3 ++- .../config_files/H1DCS_AllCorrections_Cleaning.ini | 4 +++- .../H1DCS_SplitPU_AllCorrections_Cleaning.ini | 4 +++- .../H1GDS_LowLatency_AllCorrections_Cleaning.ini | 5 +++-- .../H1GDS_TestLatency_AllCorrections_Cleaning.ini | 5 +++-- .../gstlal_compute_strain_config_example.ini | 5 +++-- gstlal-calibration/tests/check_calibration/Makefile | 13 ++++++++----- 7 files changed, 25 insertions(+), 14 deletions(-) diff --git a/gstlal-calibration/bin/gstlal_compute_strain b/gstlal-calibration/bin/gstlal_compute_strain index bc04e1fdef..a219351a2c 100755 --- a/gstlal-calibration/bin/gstlal_compute_strain +++ b/gstlal-calibration/bin/gstlal_compute_strain @@ -270,6 +270,7 @@ witness_frequency_resolution = float(DataCleaningConfigs["witnessfrequencyresolu witness_tf_update_time = float(DataCleaningConfigs["witnesstfupdatetime"]) critical_lock_loss_time = float(DataCleaningConfigs["criticallocklosstime"]) witness_filter_taper_time = float(DataCleaningConfigs["witnessfiltertapertime"]) +witness_tf_filename = DataCleaningConfigs["witnesstffilename"] if DataCleaningConfigs["witnesstffilename"] != "None" else None expected_kappatst_real = float(TDCFConfigs["expectedkappatstreal"]) expected_kappatst_imag = float(TDCFConfigs["expectedkappatstimag"]) @@ -2176,7 +2177,7 @@ if witness_channel_list is not None: witnesses.append(calibration_parts.caps_and_progress(pipeline, head_dict[key], "audio/x-raw, format=F64LE, channels=1, channel-mask=(bitmask)0x0", key)) if len(witnesses) != len(witness_channel_list[i]): print "WARNING: Not all requested witness channels are being used" - clean_strain = calibration_parts.clean_data(pipeline, clean_strain, hoft_sr, witnesses, witness_rates[i], witness_fft_samples, witness_fft_overlap, num_witness_ffts, min_witness_ffts, witness_tf_update_samples, witness_fir_samples, witness_frequency_resolution, witness_filter_taper_length, use_median = witness_tf_use_median, notch_frequencies = witness_notch_frequencies[i], obsready = obsreadytee, delay_time = witness_delay_time, wait_time = witness_wait_time, critical_lock_loss_time = critical_lock_loss_time, filename = "transfer_functions_%d.txt" % i) + clean_strain = calibration_parts.clean_data(pipeline, clean_strain, hoft_sr, witnesses, witness_rates[i], witness_fft_samples, witness_fft_overlap, num_witness_ffts, min_witness_ffts, witness_tf_update_samples, witness_fir_samples, witness_frequency_resolution, witness_filter_taper_length, use_median = witness_tf_use_median, notch_frequencies = witness_notch_frequencies[i], obsready = obsreadytee, delay_time = witness_delay_time, wait_time = witness_wait_time, critical_lock_loss_time = critical_lock_loss_time, filename = None if witness_tf_filename is None else "%s_%d.txt" % (witness_tf_filename, i)) witness_delay_time += witness_delay_increment witness_wait_time += witness_wait_increment diff --git a/gstlal-calibration/config_files/H1DCS_AllCorrections_Cleaning.ini b/gstlal-calibration/config_files/H1DCS_AllCorrections_Cleaning.ini index 03166b7a89..4b649a781c 100644 --- a/gstlal-calibration/config_files/H1DCS_AllCorrections_Cleaning.ini +++ b/gstlal-calibration/config_files/H1DCS_AllCorrections_Cleaning.ini @@ -342,13 +342,15 @@ WitnessTFUpdateTime: 3600 CriticalLockLossTime: 1800 # The amount of time to use to taper in newly computed FIR filters for witness channels being used for noise subtraction. WitnessFilterTaperTime: 10 +# If writing transfer functions to file, this sets the name. If transfer functions should not be written to file, this should be set to None +WitnessTFFilename: transfer_functions # Should the transfer function calculation use a median? If not, an average (mean) is used. WitnessTFUseMedian: Yes ############################### # Options for HOFT_CLEAN bits # ############################### # The amount of data from h(t) and cleaned h(t) that is used to compute and compare the rms. This comparison between cleaned and uncleaned h(t) determines whether the HOFT_CLEAN bits of the calibration state vector are on or off. -CleaningCheckRMSTime: 1.0 +CleaningCheckRMSTime: 20.0 # Minimum of a range of frequencies in which we expect line/noise subtraction to be impactful. The HOFT_CLEAN_LOWFREQ_OK bit of the calibration state vector is determined based on whether rms of the cleaned data is less than that of uncleaned h(t) in this range. CleaningCheckRangeLowMin: 15 # Maximum of a range of frequencies in which we expect line/noise subtraction to be impactful. The HOFT_CLEAN_LOWFREQ_OK bit of the calibration state vector is determined based on whether rms of the cleaned data is less than that of uncleaned h(t) in this range. diff --git a/gstlal-calibration/config_files/H1DCS_SplitPU_AllCorrections_Cleaning.ini b/gstlal-calibration/config_files/H1DCS_SplitPU_AllCorrections_Cleaning.ini index 5ccc4945c0..70f812577d 100644 --- a/gstlal-calibration/config_files/H1DCS_SplitPU_AllCorrections_Cleaning.ini +++ b/gstlal-calibration/config_files/H1DCS_SplitPU_AllCorrections_Cleaning.ini @@ -342,13 +342,15 @@ WitnessTFUpdateTime: 3600 CriticalLockLossTime: 1800 # The amount of time to use to taper in newly computed FIR filters for witness channels being used for noise subtraction. WitnessFilterTaperTime: 10 +# If writing transfer functions to file, this sets the name. If transfer functions should not be written to file, this should be set to None +WitnessTFFilename: None # Should the transfer function calculation use a median? If not, an average (mean) is used. WitnessTFUseMedian: Yes ############################### # Options for HOFT_CLEAN bits # ############################### # The amount of data from h(t) and cleaned h(t) that is used to compute and compare the rms. This comparison between cleaned and uncleaned h(t) determines whether the HOFT_CLEAN bits of the calibration state vector are on or off. -CleaningCheckRMSTime: 1.0 +CleaningCheckRMSTime: 20.0 # Minimum of a range of frequencies in which we expect line/noise subtraction to be impactful. The HOFT_CLEAN_LOWFREQ_OK bit of the calibration state vector is determined based on whether rms of the cleaned data is less than that of uncleaned h(t) in this range. CleaningCheckRangeLowMin: 15 # Maximum of a range of frequencies in which we expect line/noise subtraction to be impactful. The HOFT_CLEAN_LOWFREQ_OK bit of the calibration state vector is determined based on whether rms of the cleaned data is less than that of uncleaned h(t) in this range. diff --git a/gstlal-calibration/config_files/H1GDS_LowLatency_AllCorrections_Cleaning.ini b/gstlal-calibration/config_files/H1GDS_LowLatency_AllCorrections_Cleaning.ini index da4db61618..5d08ce9f4e 100644 --- a/gstlal-calibration/config_files/H1GDS_LowLatency_AllCorrections_Cleaning.ini +++ b/gstlal-calibration/config_files/H1GDS_LowLatency_AllCorrections_Cleaning.ini @@ -301,7 +301,6 @@ StochHWInjBitmask: 8388608 BufferLength: 1.0 FrequencyDomainFiltering: No Dewhitening: No -LowLatency: No # Latency of all filtering/averaging/median processes (other than calibration model filters) as a fraction of filter length. Value should be set between 0.0 and 1.0. FilterLatency: 0.0 @@ -343,13 +342,15 @@ WitnessTFUpdateTime: 3600 CriticalLockLossTime: 1800 # The amount of time to use to taper in newly computed FIR filters for witness channels being used for noise subtraction. WitnessFilterTaperTime: 10 +# If writing transfer functions to file, this sets the name. If transfer functions should not be written to file, this should be set to None +WitnessTFFilename: None # Should the transfer function calculation use a median? If not, an average (mean) is used. WitnessTFUseMedian: Yes ############################### # Options for HOFT_CLEAN bits # ############################### # The amount of data from h(t) and cleaned h(t) that is used to compute and compare the rms. This comparison between cleaned and uncleaned h(t) determines whether the HOFT_CLEAN bits of the calibration state vector are on or off. -CleaningCheckRMSTime: 1.0 +CleaningCheckRMSTime: 20.0 # Minimum of a range of frequencies in which we expect line/noise subtraction to be impactful. The HOFT_CLEAN_LOWFREQ_OK bit of the calibration state vector is determined based on whether rms of the cleaned data is less than that of uncleaned h(t) in this range. CleaningCheckRangeLowMin: 15 # Maximum of a range of frequencies in which we expect line/noise subtraction to be impactful. The HOFT_CLEAN_LOWFREQ_OK bit of the calibration state vector is determined based on whether rms of the cleaned data is less than that of uncleaned h(t) in this range. diff --git a/gstlal-calibration/config_files/H1GDS_TestLatency_AllCorrections_Cleaning.ini b/gstlal-calibration/config_files/H1GDS_TestLatency_AllCorrections_Cleaning.ini index 6ebb9bce8e..aad0b87ed9 100644 --- a/gstlal-calibration/config_files/H1GDS_TestLatency_AllCorrections_Cleaning.ini +++ b/gstlal-calibration/config_files/H1GDS_TestLatency_AllCorrections_Cleaning.ini @@ -301,7 +301,6 @@ StochHWInjBitmask: 8388608 BufferLength: 1.0 FrequencyDomainFiltering: No Dewhitening: No -LowLatency: No # Latency of all filtering/averaging/median processes (other than calibration model filters) as a fraction of filter length. Value should be set between 0.0 and 1.0. FilterLatency: 0.0 @@ -343,13 +342,15 @@ WitnessTFUpdateTime: 3600 CriticalLockLossTime: 1800 # The amount of time to use to taper in newly computed FIR filters for witness channels being used for noise subtraction. WitnessFilterTaperTime: 10 +# If writing transfer functions to file, this sets the name. If transfer functions should not be written to file, this should be set to None +WitnessTFFilename: None # Should the transfer function calculation use a median? If not, an average (mean) is used. WitnessTFUseMedian: Yes ############################### # Options for HOFT_CLEAN bits # ############################### # The amount of data from h(t) and cleaned h(t) that is used to compute and compare the rms. This comparison between cleaned and uncleaned h(t) determines whether the HOFT_CLEAN bits of the calibration state vector are on or off. -CleaningCheckRMSTime: 1.0 +CleaningCheckRMSTime: 20.0 # Minimum of a range of frequencies in which we expect line/noise subtraction to be impactful. The HOFT_CLEAN_LOWFREQ_OK bit of the calibration state vector is determined based on whether rms of the cleaned data is less than that of uncleaned h(t) in this range. CleaningCheckRangeLowMin: 15 # Maximum of a range of frequencies in which we expect line/noise subtraction to be impactful. The HOFT_CLEAN_LOWFREQ_OK bit of the calibration state vector is determined based on whether rms of the cleaned data is less than that of uncleaned h(t) in this range. diff --git a/gstlal-calibration/config_files/gstlal_compute_strain_config_example.ini b/gstlal-calibration/config_files/gstlal_compute_strain_config_example.ini index 96b57233ab..7d5b0cf63b 100644 --- a/gstlal-calibration/config_files/gstlal_compute_strain_config_example.ini +++ b/gstlal-calibration/config_files/gstlal_compute_strain_config_example.ini @@ -300,7 +300,6 @@ StochHWInjBitmask: 8388608 BufferLength: 1.0 FrequencyDomainFiltering: No Dewhitening: No -LowLatency: No # Latency of all filtering/averaging/median processes (other than calibration model filters) as a fraction of filter length. Value should be set between 0.0 and 1.0. FilterLatency: 0.0 @@ -342,11 +341,13 @@ WitnessTFUpdateTime: 3600 CriticalLockLossTime: 1800 # The amount of time to use to taper in newly computed FIR filters for witness channels being used for noise subtraction. WitnessFilterTaperTime: 10 +# If writing transfer functions to file, this sets the name. If transfer functions should not be written to file, this should be set to None +WitnessTFFilename: None ############################### # Options for HOFT_CLEAN bits # ############################### # The amount of data from h(t) and cleaned h(t) that is used to compute and compare the rms. This comparison between cleaned and uncleaned h(t) determines whether the HOFT_CLEAN bits of the calibration state vector are on or off. -CleaningCheckRMSTime: 1.0 +CleaningCheckRMSTime: 20.0 # Minimum of a range of frequencies in which we expect line/noise subtraction to be impactful. The HOFT_CLEAN_LOWFREQ_OK bit of the calibration state vector is determined based on whether rms of the cleaned data is less than that of uncleaned h(t) in this range. CleaningCheckRangeLowMin: 15 # Maximum of a range of frequencies in which we expect line/noise subtraction to be impactful. The HOFT_CLEAN_LOWFREQ_OK bit of the calibration state vector is determined based on whether rms of the cleaned data is less than that of uncleaned h(t) in this range. diff --git a/gstlal-calibration/tests/check_calibration/Makefile b/gstlal-calibration/tests/check_calibration/Makefile index d9698a7ebe..f871457e57 100644 --- a/gstlal-calibration/tests/check_calibration/Makefile +++ b/gstlal-calibration/tests/check_calibration/Makefile @@ -4,24 +4,24 @@ ################################# # which interferometer (H or L) -IFO = H +IFO = L # determines where to look for filters files (e.g., O1, O2, O3, ER10, ER13, ER14, PreER10, PreER13, PreER14) OBSRUN = O2 START = 1186159040 -END = 1186160064 +END = 1186162112 SHMRUNTIME = 400 # How much time does the calibration need to settle at the start and end? PLOT_WARMUP_TIME = 220 PLOT_COOLDOWN_TIME = 64 -GDSCONFIGS = ../../config_files/H1GDS_LowLatency_AllCorrections_Cleaning.ini -DCSCONFIGS = ../../config_files/H1DCS_AllCorrections_Cleaning.ini +GDSCONFIGS = ../../config_files/L1GDS_LowLatency_AllCorrections_Cleaning.ini +DCSCONFIGS = ../../config_files/L1DCS_AllCorrections_Cleaning.ini GDSTESTCONFIGS = ../../config_files/H1GDS_LowLatency_AllCorrections_Cleaning.ini DCSTESTCONFIGS = ../../config_files/H1DCS_AllCorrections_Cleaning.ini GDSSHMCONFIGS = ../../config_files/H1GDS_TestLatency_AllCorrections_Cleaning.ini -all: DCS_pcal2darm_plots +all: DCS_pcal2darm_plots DCS_over_C02 ################################################ ### These commands should change less often ### @@ -75,6 +75,9 @@ lines_ratio_DCS: $(IFO)1_hoft_DCS_frames.cache latency_test: $(IFO)1_hoft_GDS_SHM_frames.cache python latency_plot.py --intime-file gstlal_compute_strain_timestamps_in.txt --outtime-file gstlal_compute_strain_timestamps_out.txt --plot-filename-prefix $(IFO)1GDS_latency --plot-title '$(IFO)1 Calibration Latency vs Time' +DCS_over_C02: $(IFO)1_hoft_DCS_frames.cache $(IFO)1_C02_frames.cache + python plot_transfer_function.py --gps-start-time $(PLOT_START) --gps-end-time $(PLOT_END) --ifo $(IFO)1 --numerator-frame-cache $(IFO)1_hoft_DCS_frames.cache --denominator-frame-cache $(IFO)1_C02_frames.cache --numerator-channel-name DCS-CALIB_STRAIN --denominator-channel-name DCS-CALIB_STRAIN_C02 --magnitude-min 0.7 --magnitude-max 1.3 --phase-min -20.0 --phase-max 20.0 --plot-title 'DCS Test / C02 Transfer Function' + noise_subtraction_tf_DCS: $(IFO)1_hoft_DCS_frames.cache python plot_transfer_function.py --gps-start-time $(PLOT_START) --gps-end-time $(PLOT_END) --ifo $(IFO)1 --numerator-frame-cache $(IFO)1_hoft_DCS_frames.cache --denominator-frame-cache $(IFO)1_hoft_DCS_frames.cache --numerator-channel-name DCS-CALIB_STRAIN_CLEAN --denominator-channel-name DCS-CALIB_STRAIN --magnitude-min 0.0 --magnitude-max 1.5 --phase-min -20.0 --phase-max 20.0 --plot-title 'Noise Subtraction Transfer Function' -- GitLab