Skip to content
Snippets Groups Projects
Commit a43f7baa authored by Tyson Littenberg's avatar Tyson Littenberg
Browse files

Merge branch 'fft-norm' into 'master'

fix norm. for ffts of freqData before BayesLine

See merge request lscsoft/bayeswave!69
parents fbbabb5d a263647f
No related branches found
No related tags found
No related merge requests found
......@@ -374,7 +374,10 @@ int main(int argc, char *argv[])
timeData[ifo][2*i] = data->s[ifo][2*(imin+1)];
timeData[ifo][2*i+1] = data->s[ifo][2*(imin+1)+1];
}
fftw_wrapper(timeData[ifo],data->N,-1);
fftw_wrapper(timeData[ifo],data->N,-1);
//normalize time series as expected by BayesLine
for(i=0; i<N; i++) timeData[ifo][i]/=data->Tobs;
fprintf(stdout,"BayesLine search phase for IFO %s\n", data->ifos[ifo]);
BayesLineBurnin(bayesline[0][ifo], timeData[ifo], asd);
......
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