Is there a reason for the matter-matter correlation (but also galaxy-matter) prediction not being smoothed?
In predictions.c we find:
|
if ((ka[i]>=kminout) && (ka[i]<=kmaxout)) |
|
fprintf (fpk,"%g %g %g %g\n",ka[i],pk[i], |
|
pklin[i]*bias*exp(-rsm2_gm*ka[i]*ka[i]), |
|
pklin[i]*exp(-rsm2_mm*ka[i]*ka[i])); |
|
if ((ra[i]>=rminout) && (ra[i]<=rmaxout)) |
|
fprintf (fxi,"%g %g %g %g\n",ra[i], xi[i], |
|
xilin[i]*bias, xilin[i]); |
|
} |
That means that we are saving to file the smoothed power spectrum and the linear (not smoothed) correlation. Is there a reason for that, or it is just an error?
Is there a reason for the matter-matter correlation (but also galaxy-matter) prediction not being smoothed?
In predictions.c we find:
CoLoRe/src/predictions.c
Lines 92 to 99 in 0460c20
That means that we are saving to file the smoothed power spectrum and the linear (not smoothed) correlation. Is there a reason for that, or it is just an error?