A function to taper the psd to infinity for given min/max frequencies
:psd: A real8 frequency series containing the psd
:newdeltaF (Hz): The target delta F to interpolate to
:minfs (Hz): The frequency boundaries over which to taper the spectrum to infinity. i.e., frequencies below the first item in the tuple will have an infinite spectrum, the second item in the tuple will not be changed. A taper from 0 to infinity is applied in between. The PSD is also tapered from 0.85 * Nyquist to Nyquist.
:smoothing_frequency (Hz): The target frequency resolution after smoothing. Lines with bandwidths << smoothing_frequency are removed via a median calculation. Remaining features will be blurred out to this resolution.
@@ -447,7 +484,7 @@ class templates_workspace(object):
ifFIR_WHITENER:
#
# Compute a product of freq series of the whitening kernel and the template (convolution in time domain) then add quadrature phase(Leo)
# Compute a product of freq series of the whitening kernel and the template (convolution in time domain) then add quadrature phase
#
assert(len(self.kernel_fseries.data.data)//2+1)==len(fseries.data.data),"the size of whitening kernel freq series does not match with a given format of COMPLEX16FrequencySeries."