Skip to content
Snippets Groups Projects
Commit f7d224e4 authored by Patrick Godwin's avatar Patrick Godwin Committed by Patrick Godwin
Browse files

gstlal_autocorrelation_chi2.c: modify use of GSL_REAL/GSL_IMAG for GSL 2.7 compatibility

parent fb51638b
No related branches found
No related tags found
1 merge request!104gstlal_autocorrelation_chi2.c: modify use of GSL_REAL/GSL_IMAG for GSL 2.7 compatibility
Pipeline #301135 passed with warnings
......@@ -490,7 +490,9 @@ gsl_vector *gstlal_bankcorrelation_chi2_compute_norms(const gsl_matrix_complex *
for(channel = 0; channel < channels; channel++) {
norms = 2*channels;
for(i = 0; i < channels; i++) {
cij = ((float) GSL_REAL(gsl_matrix_complex_get(bankcorrelation_matrix, i, channel)) + (float) GSL_IMAG(gsl_matrix_complex_get(bankcorrelation_matrix, i, channel)) * I);
gsl_complex coeff;
coeff = gsl_matrix_complex_get(bankcorrelation_matrix, i, channel);
cij = ((float) GSL_REAL(coeff) + (float) GSL_IMAG(coeff) * I);
norms -= 0.5*conjf(cij)*cij;
}
gsl_vector_set(norm, channel, norms);
......@@ -524,10 +526,12 @@ unsigned gstlal_bankcorrelation_chi2_from_peak_float(float *out, struct gstlal_p
if (snr[i] == 0) continue;
for (j = 0; j < state->channels; j++)
{
gsl_complex coeff;
index = (state->samples[i]) * state->channels + j;
snrj = *(data + index);
// Normalization of cij is in svd_bank.py. Phase must be (+).
cij = ((float) GSL_REAL(gsl_matrix_complex_get(bcmat, i, j)) + (float) GSL_IMAG(gsl_matrix_complex_get(bcmat, i, j)) * I);
coeff = gsl_matrix_complex_get(bcmat, i, j);
cij = ((float) GSL_REAL(coeff) + (float) GSL_IMAG(coeff) * I);
// 0.5 is necessary due to the template normalization gstlal uses.
xij = 0.5 * snr[i] * cij - snrj;
out[i] += conjf(xij) * xij;
......
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