├── .gitignore ├── .readthedocs.yaml ├── CITATION.cff ├── LICENSE ├── NEW_FEATURES.md ├── README.md ├── WFfiles ├── QNMData_a.txt ├── QNMData_fdamp.txt ├── QNMData_fring.txt └── xiTide_Table_200.h5 ├── docs ├── Makefile ├── README.md ├── docs_requirements.txt ├── make.bat └── source │ ├── _static │ ├── custom.css │ └── gwfast_logo.png │ ├── additional_definitions.rst │ ├── citation.rst │ ├── conf.py │ ├── create_data.rst │ ├── detector_networks.rst │ ├── fisher_tools.rst │ ├── gwfast_logo.png │ ├── index.rst │ ├── installation.rst │ ├── notebooks │ ├── gwfast_tutorial.ipynb │ └── new_features_tutorial.ipynb │ ├── psds_readme_link.md │ ├── run_script.rst │ ├── single_detector.rst │ └── waveforms.rst ├── gwfast ├── .patch │ └── patch_ndt_complex_0-9-41.patch ├── __init__.py ├── fisherTools.py ├── gwfastGlobals.py ├── gwfastUtils.py ├── network.py ├── population │ ├── AuxFiles │ │ ├── EoS_ALF2.txt │ │ ├── EoS_APR4.txt │ │ └── zform_Table_200.h5 │ ├── Globals.py │ ├── POPFisher.py │ ├── POPmodels.py │ ├── POPutils.py │ ├── generate_pdraw │ │ ├── .ipynb_checkpoints │ │ │ ├── config_file-checkpoint.py │ │ │ └── generate_pdraw-checkpoint.py │ │ ├── __pycache__ │ │ │ └── config_file.cpython-311.pyc │ │ ├── config_file.py │ │ └── generate_pdraw.py │ ├── popdistributions │ │ ├── massdistribution.py │ │ ├── ratedistribution.py │ │ └── spindistribution.py │ └── run │ │ └── calculate_hyperpar_derivatives_from_catalog.py ├── signal.py ├── stochastic │ ├── README.md │ └── stochasticTools.py └── waveforms.py ├── gwfast_logo_bkgd.png ├── gwfast_pop_logo_bkgd.png ├── gwfast_stoc_logo_bkgd.png ├── notebooks ├── Stochastic_tutorial.ipynb ├── gwfast_tutorial.ipynb └── new_features_tutorial.ipynb ├── psds ├── ET-0000A-18.txt ├── ET_designs_comparison_paper │ ├── HFLF_cryo │ │ ├── ETLength10km.txt │ │ ├── ETLength15km.txt │ │ └── ETLength20km.txt │ └── HF_only │ │ ├── ETLength10km.txt │ │ ├── ETLength15km.txt │ │ └── ETLength20km.txt ├── LVC_O1O2O3 │ ├── 2017-06-10_DCH_C02_H1_O2_Sensitivity_strain_asd.txt │ ├── 2017-08-06_DCH_C02_L1_O2_Sensitivity_strain_asd.txt │ ├── H1_asd-1262197260.txt │ ├── Hrec_hoft_V1O2Repro2A_16384Hz.txt │ ├── L1_asd-1262141640.txt │ ├── O3-H1-C01_CLEAN_SUB60HZ-1251752040.0_sensitivity_strain_asd.txt │ ├── O3-L1-C01_CLEAN_SUB60HZ-1240573680.0_sensitivity_strain_asd.txt │ ├── O3-V1_sensitivity_strain_asd.txt │ └── V1_asd-1265246178.txt ├── PSDs_README.md ├── ce_strain │ ├── cosmic_explorer.txt │ ├── cosmic_explorer_20km.txt │ ├── cosmic_explorer_20km_pm.txt │ └── cosmic_explorer_40km_lf.txt ├── observing_scenarios_paper │ ├── AplusDesign.txt │ ├── aligo_O3actual_H1.txt │ ├── aligo_O3actual_L1.txt │ ├── aligo_O4high.txt │ ├── aligo_O4low.txt │ ├── avirgo_O3actual.txt │ ├── avirgo_O4high_NEW.txt │ ├── avirgo_O5high_NEW.txt │ ├── avirgo_O5low_NEW.txt │ ├── kagra_10Mpc.txt │ ├── kagra_128Mpc.txt │ ├── kagra_25Mpc.txt │ ├── kagra_3Mpc.txt │ └── kagra_80Mpc.txt └── unofficial_curves_all_dets │ ├── advirgo.txt │ ├── advirgo_sqz.txt │ ├── advirgo_wb.txt │ ├── aligo.txt │ ├── aligo_design.txt │ ├── aplus.txt │ ├── aplus_sqzonly.txt │ ├── ce1.txt │ ├── ce2.txt │ ├── er8.txt │ ├── et_d.txt │ ├── kagra.txt │ ├── kagra_sqz.txt │ ├── kagra_wb.txt │ ├── o1.txt │ ├── o2.txt │ ├── o2_crossspec.txt │ ├── o3_h1.txt │ ├── o3_l1.txt │ ├── o3_v1.txt │ ├── s6.txt │ └── voyager.txt ├── pyproject.toml ├── requirements.txt ├── run ├── calculate_forecasts_from_catalog.py ├── config_file.ini └── correlation_from_data.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/LICENSE -------------------------------------------------------------------------------- /NEW_FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/NEW_FEATURES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/README.md -------------------------------------------------------------------------------- /WFfiles/QNMData_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/WFfiles/QNMData_a.txt -------------------------------------------------------------------------------- /WFfiles/QNMData_fdamp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/WFfiles/QNMData_fdamp.txt -------------------------------------------------------------------------------- /WFfiles/QNMData_fring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/WFfiles/QNMData_fring.txt -------------------------------------------------------------------------------- /WFfiles/xiTide_Table_200.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/WFfiles/xiTide_Table_200.h5 -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/docs_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/docs_requirements.txt -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/source/_static/custom.css -------------------------------------------------------------------------------- /docs/source/_static/gwfast_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/source/_static/gwfast_logo.png -------------------------------------------------------------------------------- /docs/source/additional_definitions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/source/additional_definitions.rst -------------------------------------------------------------------------------- /docs/source/citation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/source/citation.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/create_data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/source/create_data.rst -------------------------------------------------------------------------------- /docs/source/detector_networks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/source/detector_networks.rst -------------------------------------------------------------------------------- /docs/source/fisher_tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/source/fisher_tools.rst -------------------------------------------------------------------------------- /docs/source/gwfast_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/source/gwfast_logo.png -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/notebooks/gwfast_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/source/notebooks/gwfast_tutorial.ipynb -------------------------------------------------------------------------------- /docs/source/notebooks/new_features_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/source/notebooks/new_features_tutorial.ipynb -------------------------------------------------------------------------------- /docs/source/psds_readme_link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/source/psds_readme_link.md -------------------------------------------------------------------------------- /docs/source/run_script.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/source/run_script.rst -------------------------------------------------------------------------------- /docs/source/single_detector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/source/single_detector.rst -------------------------------------------------------------------------------- /docs/source/waveforms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/docs/source/waveforms.rst -------------------------------------------------------------------------------- /gwfast/.patch/patch_ndt_complex_0-9-41.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/.patch/patch_ndt_complex_0-9-41.patch -------------------------------------------------------------------------------- /gwfast/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | 4 | __version__ = "1.1.2" 5 | -------------------------------------------------------------------------------- /gwfast/fisherTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/fisherTools.py -------------------------------------------------------------------------------- /gwfast/gwfastGlobals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/gwfastGlobals.py -------------------------------------------------------------------------------- /gwfast/gwfastUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/gwfastUtils.py -------------------------------------------------------------------------------- /gwfast/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/network.py -------------------------------------------------------------------------------- /gwfast/population/AuxFiles/EoS_ALF2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/population/AuxFiles/EoS_ALF2.txt -------------------------------------------------------------------------------- /gwfast/population/AuxFiles/EoS_APR4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/population/AuxFiles/EoS_APR4.txt -------------------------------------------------------------------------------- /gwfast/population/AuxFiles/zform_Table_200.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/population/AuxFiles/zform_Table_200.h5 -------------------------------------------------------------------------------- /gwfast/population/Globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/population/Globals.py -------------------------------------------------------------------------------- /gwfast/population/POPFisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/population/POPFisher.py -------------------------------------------------------------------------------- /gwfast/population/POPmodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/population/POPmodels.py -------------------------------------------------------------------------------- /gwfast/population/POPutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/population/POPutils.py -------------------------------------------------------------------------------- /gwfast/population/generate_pdraw/.ipynb_checkpoints/config_file-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/population/generate_pdraw/.ipynb_checkpoints/config_file-checkpoint.py -------------------------------------------------------------------------------- /gwfast/population/generate_pdraw/.ipynb_checkpoints/generate_pdraw-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/population/generate_pdraw/.ipynb_checkpoints/generate_pdraw-checkpoint.py -------------------------------------------------------------------------------- /gwfast/population/generate_pdraw/__pycache__/config_file.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/population/generate_pdraw/__pycache__/config_file.cpython-311.pyc -------------------------------------------------------------------------------- /gwfast/population/generate_pdraw/config_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/population/generate_pdraw/config_file.py -------------------------------------------------------------------------------- /gwfast/population/generate_pdraw/generate_pdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/population/generate_pdraw/generate_pdraw.py -------------------------------------------------------------------------------- /gwfast/population/popdistributions/massdistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/population/popdistributions/massdistribution.py -------------------------------------------------------------------------------- /gwfast/population/popdistributions/ratedistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/population/popdistributions/ratedistribution.py -------------------------------------------------------------------------------- /gwfast/population/popdistributions/spindistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/population/popdistributions/spindistribution.py -------------------------------------------------------------------------------- /gwfast/population/run/calculate_hyperpar_derivatives_from_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/population/run/calculate_hyperpar_derivatives_from_catalog.py -------------------------------------------------------------------------------- /gwfast/signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/signal.py -------------------------------------------------------------------------------- /gwfast/stochastic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/stochastic/README.md -------------------------------------------------------------------------------- /gwfast/stochastic/stochasticTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/stochastic/stochasticTools.py -------------------------------------------------------------------------------- /gwfast/waveforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast/waveforms.py -------------------------------------------------------------------------------- /gwfast_logo_bkgd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast_logo_bkgd.png -------------------------------------------------------------------------------- /gwfast_pop_logo_bkgd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast_pop_logo_bkgd.png -------------------------------------------------------------------------------- /gwfast_stoc_logo_bkgd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/gwfast_stoc_logo_bkgd.png -------------------------------------------------------------------------------- /notebooks/Stochastic_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/notebooks/Stochastic_tutorial.ipynb -------------------------------------------------------------------------------- /notebooks/gwfast_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/notebooks/gwfast_tutorial.ipynb -------------------------------------------------------------------------------- /notebooks/new_features_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/notebooks/new_features_tutorial.ipynb -------------------------------------------------------------------------------- /psds/ET-0000A-18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/ET-0000A-18.txt -------------------------------------------------------------------------------- /psds/ET_designs_comparison_paper/HFLF_cryo/ETLength10km.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/ET_designs_comparison_paper/HFLF_cryo/ETLength10km.txt -------------------------------------------------------------------------------- /psds/ET_designs_comparison_paper/HFLF_cryo/ETLength15km.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/ET_designs_comparison_paper/HFLF_cryo/ETLength15km.txt -------------------------------------------------------------------------------- /psds/ET_designs_comparison_paper/HFLF_cryo/ETLength20km.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/ET_designs_comparison_paper/HFLF_cryo/ETLength20km.txt -------------------------------------------------------------------------------- /psds/ET_designs_comparison_paper/HF_only/ETLength10km.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/ET_designs_comparison_paper/HF_only/ETLength10km.txt -------------------------------------------------------------------------------- /psds/ET_designs_comparison_paper/HF_only/ETLength15km.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/ET_designs_comparison_paper/HF_only/ETLength15km.txt -------------------------------------------------------------------------------- /psds/ET_designs_comparison_paper/HF_only/ETLength20km.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/ET_designs_comparison_paper/HF_only/ETLength20km.txt -------------------------------------------------------------------------------- /psds/LVC_O1O2O3/2017-06-10_DCH_C02_H1_O2_Sensitivity_strain_asd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/LVC_O1O2O3/2017-06-10_DCH_C02_H1_O2_Sensitivity_strain_asd.txt -------------------------------------------------------------------------------- /psds/LVC_O1O2O3/2017-08-06_DCH_C02_L1_O2_Sensitivity_strain_asd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/LVC_O1O2O3/2017-08-06_DCH_C02_L1_O2_Sensitivity_strain_asd.txt -------------------------------------------------------------------------------- /psds/LVC_O1O2O3/H1_asd-1262197260.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/LVC_O1O2O3/H1_asd-1262197260.txt -------------------------------------------------------------------------------- /psds/LVC_O1O2O3/Hrec_hoft_V1O2Repro2A_16384Hz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/LVC_O1O2O3/Hrec_hoft_V1O2Repro2A_16384Hz.txt -------------------------------------------------------------------------------- /psds/LVC_O1O2O3/L1_asd-1262141640.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/LVC_O1O2O3/L1_asd-1262141640.txt -------------------------------------------------------------------------------- /psds/LVC_O1O2O3/O3-H1-C01_CLEAN_SUB60HZ-1251752040.0_sensitivity_strain_asd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/LVC_O1O2O3/O3-H1-C01_CLEAN_SUB60HZ-1251752040.0_sensitivity_strain_asd.txt -------------------------------------------------------------------------------- /psds/LVC_O1O2O3/O3-L1-C01_CLEAN_SUB60HZ-1240573680.0_sensitivity_strain_asd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/LVC_O1O2O3/O3-L1-C01_CLEAN_SUB60HZ-1240573680.0_sensitivity_strain_asd.txt -------------------------------------------------------------------------------- /psds/LVC_O1O2O3/O3-V1_sensitivity_strain_asd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/LVC_O1O2O3/O3-V1_sensitivity_strain_asd.txt -------------------------------------------------------------------------------- /psds/LVC_O1O2O3/V1_asd-1265246178.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/LVC_O1O2O3/V1_asd-1265246178.txt -------------------------------------------------------------------------------- /psds/PSDs_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/PSDs_README.md -------------------------------------------------------------------------------- /psds/ce_strain/cosmic_explorer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/ce_strain/cosmic_explorer.txt -------------------------------------------------------------------------------- /psds/ce_strain/cosmic_explorer_20km.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/ce_strain/cosmic_explorer_20km.txt -------------------------------------------------------------------------------- /psds/ce_strain/cosmic_explorer_20km_pm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/ce_strain/cosmic_explorer_20km_pm.txt -------------------------------------------------------------------------------- /psds/ce_strain/cosmic_explorer_40km_lf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/ce_strain/cosmic_explorer_40km_lf.txt -------------------------------------------------------------------------------- /psds/observing_scenarios_paper/AplusDesign.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/observing_scenarios_paper/AplusDesign.txt -------------------------------------------------------------------------------- /psds/observing_scenarios_paper/aligo_O3actual_H1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/observing_scenarios_paper/aligo_O3actual_H1.txt -------------------------------------------------------------------------------- /psds/observing_scenarios_paper/aligo_O3actual_L1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/observing_scenarios_paper/aligo_O3actual_L1.txt -------------------------------------------------------------------------------- /psds/observing_scenarios_paper/aligo_O4high.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/observing_scenarios_paper/aligo_O4high.txt -------------------------------------------------------------------------------- /psds/observing_scenarios_paper/aligo_O4low.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/observing_scenarios_paper/aligo_O4low.txt -------------------------------------------------------------------------------- /psds/observing_scenarios_paper/avirgo_O3actual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/observing_scenarios_paper/avirgo_O3actual.txt -------------------------------------------------------------------------------- /psds/observing_scenarios_paper/avirgo_O4high_NEW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/observing_scenarios_paper/avirgo_O4high_NEW.txt -------------------------------------------------------------------------------- /psds/observing_scenarios_paper/avirgo_O5high_NEW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/observing_scenarios_paper/avirgo_O5high_NEW.txt -------------------------------------------------------------------------------- /psds/observing_scenarios_paper/avirgo_O5low_NEW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/observing_scenarios_paper/avirgo_O5low_NEW.txt -------------------------------------------------------------------------------- /psds/observing_scenarios_paper/kagra_10Mpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/observing_scenarios_paper/kagra_10Mpc.txt -------------------------------------------------------------------------------- /psds/observing_scenarios_paper/kagra_128Mpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/observing_scenarios_paper/kagra_128Mpc.txt -------------------------------------------------------------------------------- /psds/observing_scenarios_paper/kagra_25Mpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/observing_scenarios_paper/kagra_25Mpc.txt -------------------------------------------------------------------------------- /psds/observing_scenarios_paper/kagra_3Mpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/observing_scenarios_paper/kagra_3Mpc.txt -------------------------------------------------------------------------------- /psds/observing_scenarios_paper/kagra_80Mpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/observing_scenarios_paper/kagra_80Mpc.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/advirgo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/advirgo.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/advirgo_sqz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/advirgo_sqz.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/advirgo_wb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/advirgo_wb.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/aligo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/aligo.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/aligo_design.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/aligo_design.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/aplus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/aplus.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/aplus_sqzonly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/aplus_sqzonly.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/ce1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/ce1.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/ce2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/ce2.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/er8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/er8.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/et_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/et_d.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/kagra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/kagra.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/kagra_sqz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/kagra_sqz.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/kagra_wb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/kagra_wb.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/o1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/o1.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/o2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/o2.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/o2_crossspec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/o2_crossspec.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/o3_h1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/o3_h1.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/o3_l1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/o3_l1.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/o3_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/o3_v1.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/s6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/s6.txt -------------------------------------------------------------------------------- /psds/unofficial_curves_all_dets/voyager.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/psds/unofficial_curves_all_dets/voyager.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/requirements.txt -------------------------------------------------------------------------------- /run/calculate_forecasts_from_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/run/calculate_forecasts_from_catalog.py -------------------------------------------------------------------------------- /run/config_file.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/run/config_file.ini -------------------------------------------------------------------------------- /run/correlation_from_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/run/correlation_from_data.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoStatGW/gwfast/HEAD/setup.py --------------------------------------------------------------------------------