├── CosmoCov_Notes.pdf ├── LICENSE ├── README.md ├── cosmolike_core ├── 2dfftlog │ ├── twobessel.c │ ├── twobessel.h │ ├── utils.c │ ├── utils.h │ ├── utils_complex.c │ └── utils_complex.h ├── cfftlog │ ├── cfftlog.c │ ├── cfftlog.h │ ├── utils.c │ ├── utils.h │ ├── utils_complex.c │ └── utils_complex.h └── theory │ ├── R1RK_SSC.py │ ├── basics.c │ ├── cosmo2D_fourier.c │ ├── cosmo2D_fullsky.c │ ├── cosmo2D_nonlimber_clustering_fft_interp.c │ ├── cosmo3D.c │ ├── covNG_resp.py │ ├── cov_response_WL.c │ ├── covariances_3D.c │ ├── covariances_fourier.c │ ├── covariances_real_bin_fft.c │ ├── covariances_real_binned_fullsky_nonlimber_w.c │ ├── halo.c │ ├── interface_R1RK.py │ ├── interface_cov_response.py │ ├── lookup_tables │ ├── .placeholder │ ├── Resp_G1_fromsims.dat │ ├── Resp_G2_fromsims.dat │ ├── Resp_GK_fromsims_Andreas.dat │ ├── Resp_zvalues_fromsims.dat │ └── Resp_zvalues_fromsims_Andreas.dat │ ├── recompute.c │ ├── redshift_spline.c │ ├── run_covariances_real_bin_fft.c │ ├── run_covariances_real_fullsky.c │ ├── run_covariances_real_fullsky_WL_response.c │ ├── structs.c │ └── write_Pderivs.py └── covs ├── Makefile ├── compute_covariances_real.c ├── compute_covariances_real_WL_response.c ├── compute_covariances_real_flat_fft.c ├── ini_files ├── Cl_mask_polarcap_fsky0.36.dat ├── cov_desy3.ini ├── cov_desy3_flat_fft.ini ├── cov_desy3_flat_fft_g.ini ├── cov_desy3_fulltomo.ini ├── cov_desy3_g.ini ├── cov_lssty1.ini ├── cov_lssty1_flat_fft.ini ├── cov_response.ini ├── cov_test.ini ├── cov_test_bao.ini └── cov_test_g.ini ├── init.c ├── output ├── out_cov_Euclid_nz5 │ └── .placeholder ├── out_cov_desy3 │ └── .placeholder ├── out_cov_desy3_flat_fft │ └── .placeholder ├── out_cov_lssty1 │ └── .placeholder ├── out_cov_lssty1_flat_fft │ └── .placeholder ├── out_cov_test │ └── .placeholder └── out_cov_test_bao │ └── .placeholder ├── plot.py ├── plot_desy3.py └── zdistris ├── README.md ├── lens_desy1.nz ├── lens_lssty1.nz ├── lens_test.nz ├── source_Euclid.nz ├── source_desy1.nz ├── source_lssty1.nz └── source_test.nz /CosmoCov_Notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/CosmoCov_Notes.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/README.md -------------------------------------------------------------------------------- /cosmolike_core/2dfftlog/twobessel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/2dfftlog/twobessel.c -------------------------------------------------------------------------------- /cosmolike_core/2dfftlog/twobessel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/2dfftlog/twobessel.h -------------------------------------------------------------------------------- /cosmolike_core/2dfftlog/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/2dfftlog/utils.c -------------------------------------------------------------------------------- /cosmolike_core/2dfftlog/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/2dfftlog/utils.h -------------------------------------------------------------------------------- /cosmolike_core/2dfftlog/utils_complex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/2dfftlog/utils_complex.c -------------------------------------------------------------------------------- /cosmolike_core/2dfftlog/utils_complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/2dfftlog/utils_complex.h -------------------------------------------------------------------------------- /cosmolike_core/cfftlog/cfftlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/cfftlog/cfftlog.c -------------------------------------------------------------------------------- /cosmolike_core/cfftlog/cfftlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/cfftlog/cfftlog.h -------------------------------------------------------------------------------- /cosmolike_core/cfftlog/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/cfftlog/utils.c -------------------------------------------------------------------------------- /cosmolike_core/cfftlog/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/cfftlog/utils.h -------------------------------------------------------------------------------- /cosmolike_core/cfftlog/utils_complex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/cfftlog/utils_complex.c -------------------------------------------------------------------------------- /cosmolike_core/cfftlog/utils_complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/cfftlog/utils_complex.h -------------------------------------------------------------------------------- /cosmolike_core/theory/R1RK_SSC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/R1RK_SSC.py -------------------------------------------------------------------------------- /cosmolike_core/theory/basics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/basics.c -------------------------------------------------------------------------------- /cosmolike_core/theory/cosmo2D_fourier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/cosmo2D_fourier.c -------------------------------------------------------------------------------- /cosmolike_core/theory/cosmo2D_fullsky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/cosmo2D_fullsky.c -------------------------------------------------------------------------------- /cosmolike_core/theory/cosmo2D_nonlimber_clustering_fft_interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/cosmo2D_nonlimber_clustering_fft_interp.c -------------------------------------------------------------------------------- /cosmolike_core/theory/cosmo3D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/cosmo3D.c -------------------------------------------------------------------------------- /cosmolike_core/theory/covNG_resp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/covNG_resp.py -------------------------------------------------------------------------------- /cosmolike_core/theory/cov_response_WL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/cov_response_WL.c -------------------------------------------------------------------------------- /cosmolike_core/theory/covariances_3D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/covariances_3D.c -------------------------------------------------------------------------------- /cosmolike_core/theory/covariances_fourier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/covariances_fourier.c -------------------------------------------------------------------------------- /cosmolike_core/theory/covariances_real_bin_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/covariances_real_bin_fft.c -------------------------------------------------------------------------------- /cosmolike_core/theory/covariances_real_binned_fullsky_nonlimber_w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/covariances_real_binned_fullsky_nonlimber_w.c -------------------------------------------------------------------------------- /cosmolike_core/theory/halo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/halo.c -------------------------------------------------------------------------------- /cosmolike_core/theory/interface_R1RK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/interface_R1RK.py -------------------------------------------------------------------------------- /cosmolike_core/theory/interface_cov_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/interface_cov_response.py -------------------------------------------------------------------------------- /cosmolike_core/theory/lookup_tables/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cosmolike_core/theory/lookup_tables/Resp_G1_fromsims.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/lookup_tables/Resp_G1_fromsims.dat -------------------------------------------------------------------------------- /cosmolike_core/theory/lookup_tables/Resp_G2_fromsims.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/lookup_tables/Resp_G2_fromsims.dat -------------------------------------------------------------------------------- /cosmolike_core/theory/lookup_tables/Resp_GK_fromsims_Andreas.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/lookup_tables/Resp_GK_fromsims_Andreas.dat -------------------------------------------------------------------------------- /cosmolike_core/theory/lookup_tables/Resp_zvalues_fromsims.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/lookup_tables/Resp_zvalues_fromsims.dat -------------------------------------------------------------------------------- /cosmolike_core/theory/lookup_tables/Resp_zvalues_fromsims_Andreas.dat: -------------------------------------------------------------------------------- 1 | 0.0 2 | 0.46 3 | 0.98 4 | 1.89 5 | 2.629 6 | -------------------------------------------------------------------------------- /cosmolike_core/theory/recompute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/recompute.c -------------------------------------------------------------------------------- /cosmolike_core/theory/redshift_spline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/redshift_spline.c -------------------------------------------------------------------------------- /cosmolike_core/theory/run_covariances_real_bin_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/run_covariances_real_bin_fft.c -------------------------------------------------------------------------------- /cosmolike_core/theory/run_covariances_real_fullsky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/run_covariances_real_fullsky.c -------------------------------------------------------------------------------- /cosmolike_core/theory/run_covariances_real_fullsky_WL_response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/run_covariances_real_fullsky_WL_response.c -------------------------------------------------------------------------------- /cosmolike_core/theory/structs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/structs.c -------------------------------------------------------------------------------- /cosmolike_core/theory/write_Pderivs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/cosmolike_core/theory/write_Pderivs.py -------------------------------------------------------------------------------- /covs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/Makefile -------------------------------------------------------------------------------- /covs/compute_covariances_real.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/compute_covariances_real.c -------------------------------------------------------------------------------- /covs/compute_covariances_real_WL_response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/compute_covariances_real_WL_response.c -------------------------------------------------------------------------------- /covs/compute_covariances_real_flat_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/compute_covariances_real_flat_fft.c -------------------------------------------------------------------------------- /covs/ini_files/Cl_mask_polarcap_fsky0.36.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/ini_files/Cl_mask_polarcap_fsky0.36.dat -------------------------------------------------------------------------------- /covs/ini_files/cov_desy3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/ini_files/cov_desy3.ini -------------------------------------------------------------------------------- /covs/ini_files/cov_desy3_flat_fft.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/ini_files/cov_desy3_flat_fft.ini -------------------------------------------------------------------------------- /covs/ini_files/cov_desy3_flat_fft_g.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/ini_files/cov_desy3_flat_fft_g.ini -------------------------------------------------------------------------------- /covs/ini_files/cov_desy3_fulltomo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/ini_files/cov_desy3_fulltomo.ini -------------------------------------------------------------------------------- /covs/ini_files/cov_desy3_g.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/ini_files/cov_desy3_g.ini -------------------------------------------------------------------------------- /covs/ini_files/cov_lssty1.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/ini_files/cov_lssty1.ini -------------------------------------------------------------------------------- /covs/ini_files/cov_lssty1_flat_fft.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/ini_files/cov_lssty1_flat_fft.ini -------------------------------------------------------------------------------- /covs/ini_files/cov_response.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/ini_files/cov_response.ini -------------------------------------------------------------------------------- /covs/ini_files/cov_test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/ini_files/cov_test.ini -------------------------------------------------------------------------------- /covs/ini_files/cov_test_bao.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/ini_files/cov_test_bao.ini -------------------------------------------------------------------------------- /covs/ini_files/cov_test_g.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/ini_files/cov_test_g.ini -------------------------------------------------------------------------------- /covs/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/init.c -------------------------------------------------------------------------------- /covs/output/out_cov_Euclid_nz5/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /covs/output/out_cov_desy3/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /covs/output/out_cov_desy3_flat_fft/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /covs/output/out_cov_lssty1/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /covs/output/out_cov_lssty1_flat_fft/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /covs/output/out_cov_test/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /covs/output/out_cov_test_bao/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /covs/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/plot.py -------------------------------------------------------------------------------- /covs/plot_desy3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/plot_desy3.py -------------------------------------------------------------------------------- /covs/zdistris/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/zdistris/README.md -------------------------------------------------------------------------------- /covs/zdistris/lens_desy1.nz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/zdistris/lens_desy1.nz -------------------------------------------------------------------------------- /covs/zdistris/lens_lssty1.nz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/zdistris/lens_lssty1.nz -------------------------------------------------------------------------------- /covs/zdistris/lens_test.nz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/zdistris/lens_test.nz -------------------------------------------------------------------------------- /covs/zdistris/source_Euclid.nz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/zdistris/source_Euclid.nz -------------------------------------------------------------------------------- /covs/zdistris/source_desy1.nz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/zdistris/source_desy1.nz -------------------------------------------------------------------------------- /covs/zdistris/source_lssty1.nz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/zdistris/source_lssty1.nz -------------------------------------------------------------------------------- /covs/zdistris/source_test.nz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoLike/CosmoCov/HEAD/covs/zdistris/source_test.nz --------------------------------------------------------------------------------