diffsky 0.3.2__tar.gz → 0.3.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {diffsky-0.3.2 → diffsky-0.3.4}/.github/workflows/mock_generation_test.yaml +83 -7
- diffsky-0.3.4/.github/workflows/shape_optimization.yaml +85 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/.github/workflows/test_main_branch.yaml +1 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/.github/workflows/tests_cron.yaml +1 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/.gitignore +1 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/CHANGES.rst +30 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/PKG-INFO +2 -2
- diffsky-0.3.4/diffsky/_version.py +1 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diagnostics/plot_fburstpop.py +10 -1
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diagnostics/plot_tburstpop.py +10 -2
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diagnostics/tests/test_plot_fburstpop.py +9 -1
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diagnostics/tests/test_plot_tburstpop.py +8 -1
- diffsky-0.3.4/diffsky/data_loaders/__init__.py +6 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/cosmos20_loader.py +91 -1
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data_validation/validate_lc_mock.py +139 -54
- diffsky-0.3.2/diffsky/data_loaders/hacc_utils/lc_mock_repro.py → diffsky-0.3.4/diffsky/data_loaders/hacc_utils/lc_mock.py +217 -65
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/lightcone_utils.py +55 -16
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/load_lc_cf.py +3 -3
- diffsky-0.3.4/diffsky/data_loaders/hacc_utils/load_lc_cf_synthetic.py +162 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/load_lc_mock.py +66 -7
- diffsky-0.3.4/diffsky/data_loaders/hacc_utils/metadata_mock.py +641 -0
- diffsky-0.3.2/diffsky/data_loaders/hacc_utils/tests/test_lc_mock_repro.py → diffsky-0.3.4/diffsky/data_loaders/hacc_utils/tests/test_lc_mock.py +11 -9
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/test_lightcone_utils.py +50 -1
- diffsky-0.3.4/diffsky/data_loaders/hacc_utils/tests/test_load_lc_cf_synthetic.py +52 -0
- diffsky-0.3.4/diffsky/data_loaders/hacc_utils/tests/test_metadata_mock.py +32 -0
- diffsky-0.3.4/diffsky/data_loaders/load_ssp_data.py +129 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/tests/test_cosmos_loader.py +33 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/tests/test_io_utils.py +3 -2
- diffsky-0.3.4/diffsky/data_loaders/tests/test_load_ssp_data.py +79 -0
- diffsky-0.3.4/diffsky/diagnostics/plot_cosmos.py +716 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/diagnostics/plot_diffstar_fq.py +4 -0
- diffsky-0.3.4/diffsky/diagnostics/tests/test_plot_cosmos.py +51 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/diagnostics/tests/test_plot_diffstar_fq.py +7 -2
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/diagnostics/plot_avpop_flex.py +11 -1
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/diagnostics/plot_funopop_simple.py +10 -1
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/diagnostics/tests/test_plot_avpop_flex.py +9 -1
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/diagnostics/tests/test_plot_funopop_simple.py +9 -1
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/bulge_opt.py +1 -1
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/bulge_shapes.py +1 -1
- diffsky-0.3.4/diffsky/ellipsoidal_shapes/diagnostics/plot_b_over_a_rp13.py +151 -0
- diffsky-0.3.4/diffsky/ellipsoidal_shapes/diagnostics/tests/test_plot_b_over_a_rp13.py +15 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/disk_opt.py +1 -1
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/disk_shapes.py +3 -1
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/ellipse_proj_kernels.py +54 -68
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/tests/test_ellipse_proj_kernels.py +70 -21
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/diagnostics/check_smhm.py +5 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/diagnostics/tests/test_check_smhm.py +5 -2
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/kernels/mc_phot_kernels.py +176 -5
- diffsky-0.3.2/diffsky/experimental/kernels/ssp_weight_kernels_repro.py → diffsky-0.3.4/diffsky/experimental/kernels/ssp_weight_kernels.py +70 -3
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/kernels/tests/test_mc_phot_kernels.py +54 -6
- diffsky-0.3.2/diffsky/experimental/lc_phot_kern_repro.py → diffsky-0.3.4/diffsky/experimental/lc_phot_kern.py +1 -1
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/lc_utils.py +35 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/mc_lightcone_halos.py +139 -473
- diffsky-0.3.2/diffsky/experimental/mc_phot_repro.py → diffsky-0.3.4/diffsky/experimental/mc_phot.py +3 -3
- diffsky-0.3.4/diffsky/experimental/sfh_model_calibrations/load_diffsky_sfh_model_calibrations.py +67 -0
- diffsky-0.3.4/diffsky/experimental/sfh_model_calibrations/tests/test_load_diffsky_sfh_model_calibrations.py +25 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/size_modeling/disk_bulge_sizes.py +2 -2
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/tests/test_dbk_from_mock2.py +10 -8
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/tests/test_lc_phot_kern.py +1 -1
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/tests/test_lc_utils.py +15 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/tests/test_mc_lightcone_halos.py +55 -104
- diffsky-0.3.2/diffsky/experimental/tests/test_mc_phot_repro.py → diffsky-0.3.4/diffsky/experimental/tests/test_mc_phot.py +16 -7
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/calibrations/hacc_core_shmf_params.py +1 -1
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/diagnostics/hmf_fit_diagnostics.py +15 -6
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/diagnostics/tests/test_hmf_fit_diagnostics.py +3 -2
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/scripts/discovery_lcdm_calibration/fit_hmf_disc_lcdm.py +11 -2
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/scripts/last_journey_calibration/fit_hmf_lj.py +11 -2
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/merging/diagnostics/plot_pmerge_vs_time.py +12 -2
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/merging/diagnostics/tests/test_plot_pmerge_vs_time.py +8 -1
- diffsky-0.3.4/diffsky/param_utils/__init__.py +4 -0
- diffsky-0.3.4/diffsky/param_utils/cosmos_calibrations/__init__.py +9 -0
- diffsky-0.3.4/diffsky/param_utils/cosmos_calibrations/cosmos_params_260105.py +238 -0
- diffsky-0.3.4/diffsky/param_utils/cosmos_calibrations/cosmos_params_260120_UM.py +238 -0
- diffsky-0.3.4/diffsky/param_utils/get_mock_params.py +31 -0
- diffsky-0.3.4/diffsky/param_utils/tests/test_get_mock_params.py +27 -0
- diffsky-0.3.4/diffsky/signdhist.py +159 -0
- diffsky-0.3.4/diffsky/tests/test_readme.py +18 -0
- diffsky-0.3.4/diffsky/tests/test_signdhist.py +130 -0
- diffsky-0.3.4/diffsky/utils/emline_utils.py +38 -0
- diffsky-0.3.4/diffsky/utils/tests/test_emline_utils.py +39 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky.egg-info/PKG-INFO +2 -2
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky.egg-info/SOURCES.txt +33 -32
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky.egg-info/requires.txt +1 -1
- {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/conf.py +7 -8
- {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/demo_diffsky_lightcone.ipynb +4 -4
- {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/rtd_environment.yaml +1 -1
- {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/validate_mc_lightcones.ipynb +40 -3
- {diffsky-0.3.2 → diffsky-0.3.4}/requirements.txt +1 -1
- diffsky-0.3.4/scripts/LJ_CROSSX/check_lc_cf_completeness.py +183 -0
- diffsky-0.3.4/scripts/LJ_CROSSX/generate_lj_cf_crossmatch_holepatch_jobs.py +118 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_CROSSX/generate_lj_cf_crossmatch_jobs.py +3 -1
- {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_CROSSX/inspect_lc_cf_crossx_job_logs.py +4 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_CROSSX/lc_cf_crossmatch_script.py +3 -3
- diffsky-0.3.4/scripts/LJ_LC_MOCKS/check_lc_mock_completeness.py +70 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_LC_MOCKS/inspect_lc_mock.py +48 -7
- diffsky-0.3.4/scripts/LJ_LC_MOCKS/make_ou26_mock_batch.py +524 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_LC_MOCKS/run_sed_mocks.sh +5 -5
- diffsky-0.3.4/scripts/ellipsoid_shape_fitting/README.txt +1 -0
- diffsky-0.3.4/scripts/ellipsoid_shape_fitting/fit_bulge_shapes_to_rp13.py +82 -0
- diffsky-0.3.4/scripts/ellipsoid_shape_fitting/fit_disk_shapes_to_rp13.py +78 -0
- diffsky-0.3.2/.github/workflows/test_new_diffstar.yaml +0 -90
- diffsky-0.3.2/diffsky/_version.py +0 -1
- diffsky-0.3.2/diffsky/data_loaders/__init__.py +0 -5
- diffsky-0.3.2/diffsky/data_loaders/hacc_utils/lc_mock_production.py +0 -709
- diffsky-0.3.2/diffsky/data_loaders/hacc_utils/load_lc_cf_synthetic.py +0 -86
- diffsky-0.3.2/diffsky/data_loaders/hacc_utils/metadata_sfh_mock.py +0 -354
- diffsky-0.3.2/diffsky/data_loaders/hacc_utils/tests/test_metadata_sfh_mock.py +0 -7
- diffsky-0.3.2/diffsky/diagnostics/plot_delta_mag_burstiness.py +0 -251
- diffsky-0.3.2/diffsky/diagnostics/tests/test_plot_delta_mag_burstiness.py +0 -13
- diffsky-0.3.2/diffsky/experimental/kernels/ssp_weight_kernels.py +0 -496
- diffsky-0.3.2/diffsky/experimental/lc_phot_kern.py +0 -505
- diffsky-0.3.2/diffsky/experimental/mc_diffsky_seds.py +0 -1010
- diffsky-0.3.2/diffsky/experimental/mc_phot.py +0 -274
- diffsky-0.3.2/diffsky/experimental/sfh_model_calibrations/load_diffsky_sfh_model_calibrations.py +0 -20
- diffsky-0.3.2/diffsky/experimental/sfh_model_calibrations/tests/test_load_diffsky_sfh_model_calibrations.py +0 -13
- diffsky-0.3.2/diffsky/experimental/tests/test_lc_phot_kern_repro.py +0 -201
- diffsky-0.3.2/diffsky/experimental/tests/test_mc_diffsky_seds.py +0 -278
- diffsky-0.3.2/diffsky/experimental/tests/test_mc_diffstarpop_wrappers.py +0 -60
- diffsky-0.3.2/diffsky/experimental/tests/test_mc_phot.py +0 -169
- diffsky-0.3.2/diffsky/experimental/tests/test_top_level_imports.py +0 -14
- diffsky-0.3.2/diffsky/sbl18_photgrad.py +0 -282
- diffsky-0.3.2/diffsky/ssp_err_model/ssp_err_model.py +0 -566
- diffsky-0.3.2/diffsky/ssp_err_model/tests/test_ssp_err_model.py +0 -211
- diffsky-0.3.2/diffsky/systematics/ssp_errors.py +0 -105
- diffsky-0.3.2/diffsky/systematics/tests/test_ssp_errors.py +0 -107
- diffsky-0.3.2/diffsky/tests/test_sbl18_photgrad.py +0 -31
- diffsky-0.3.2/diffsky/tests/test_tw_photgrad.py +0 -205
- diffsky-0.3.2/diffsky/tw_photgrad.py +0 -258
- diffsky-0.3.2/diffsky/utils/tests/__init__.py +0 -0
- diffsky-0.3.2/scripts/LJ_LC_MOCKS/make_ou26_mock.py +0 -437
- diffsky-0.3.2/scripts/__init__.py +0 -0
- diffsky-0.3.2/scripts/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/.coveragerc +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/.git_archival.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/.gitattributes +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/.github/dependabot.yml +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/.github/workflows/linting.yaml +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/.github/workflows/monthly-warning-test.yaml +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/.github/workflows/test_latest_releases.yaml +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/.readthedocs.yml +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/LICENSE.rst +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/README.rst +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diagnostics/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diagnostics/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diffburstpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diffqburstpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diffqburstpop_mono.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diffqburstpop_mono_noise.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/fburstpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/fburstpop_mono.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/freqburst.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/freqburst_mono.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tburstpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_diffburstpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_diffqburstpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_diffqburstpop_mono.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_diffqburstpop_mono_noise.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_fburstpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_fburstpop_mono.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_freqburst.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_freqburst_mono.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_tburstpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/cosmos_utils/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/cosmos_utils/cosmos_mstar_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/cosmos_utils/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/cosmos_utils/tests/test_cosmos_mstar_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/DiscoveryLCDM/cosmo.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/DiscoveryLCDM/cosmotools_steps.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/DiscoveryLCDM/cosmotools_steps_a.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/DiscoveryW0WA/cosmo.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/DiscoveryW0WA/cosmotools_steps.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/DiscoveryW0WA/cosmotools_steps_a.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/LastJourney/cosmo.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/LastJourney/cosmotools_steps.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/LastJourney/cosmotools_steps_a.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/LastJourney/lc_cores-decomposition.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data_validation/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data_validation/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data_validation/tests/test_validate_lc_cores.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data_validation/tests/test_validate_lc_mock.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data_validation/validate_lc_cores.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/defaults.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/hacc_core_utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/haccsims.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/load_hacc_cores.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/test_defaults.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/test_hacc_core_utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/test_haccsims.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/test_load_hacc_cores.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/test_load_lc_cf.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/test_load_lc_mock.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/testing_data/lc_cores-decomposition.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/testing_data/phi_haccytrees_tdata.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/testing_data/redshift_haccytrees_tdata.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/testing_data/theta_haccytrees_tdata.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/testing_data/x_haccytrees_tdata.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/testing_data/y_haccytrees_tdata.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/testing_data/z_haccytrees_tdata.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/io_utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/mock_utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/mpi_utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/tests/test_imports.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/tests/test_mock_utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/tests/test_mpi_utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/tests/testing_data/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/tests/testing_data/cosmos20_shasum.dat +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/um_binary_loader.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/diagnostics/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/diagnostics/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/diagnostics/utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/diffndhist.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/avpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/avpop_flex.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/avpop_mono.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/deltapop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/diagnostics/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/diagnostics/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/funopop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/funopop_simple.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/funopop_ssfr.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/sbl18_dust.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/sbl18_dust_kernels.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/sbl18_dustpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_avpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_avpop_flex.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_avpop_mono.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_deltapop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_funopop_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_funopop_simple.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_funopop_ssfr.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_sbl18_dustpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_tw_dust_kernels.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_tw_dustpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_tw_dustpop_mono.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_tw_dustpop_mono_noise.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_tw_dustpop_new.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tw_dust.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tw_dust_kernels.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tw_dustpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tw_dustpop_mono.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tw_dustpop_mono_noise.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tw_dustpop_new.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/__init__.py +0 -0
- {diffsky-0.3.2/diffsky/ellipsoidal_shapes/tests → diffsky-0.3.4/diffsky/ellipsoidal_shapes/diagnostics}/__init__.py +0 -0
- {diffsky-0.3.2/diffsky/experimental/black_hole_modeling → diffsky-0.3.4/diffsky/ellipsoidal_shapes/diagnostics/tests}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/pdf_model_utils.py +0 -0
- {diffsky-0.3.2/diffsky/experimental/black_hole_modeling → diffsky-0.3.4/diffsky/ellipsoidal_shapes}/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/tests/test_bulge_opt.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/tests/test_bulge_shapes.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/tests/test_disk_opt.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/tests/test_disk_shapes.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/tests/test_pdf_model_utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/tests/testing_data/ellipsoid_b_over_a_pdf_rodriguez_padilla_2013.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/tests/testing_data/spiral_b_over_a_pdf_rodriguez_padilla_2013.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/black_hole_modeling/README.txt +0 -0
- {diffsky-0.3.2/diffsky/experimental/diagnostics → diffsky-0.3.4/diffsky/experimental/black_hole_modeling}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/black_hole_modeling/black_hole_accretion_rate.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/black_hole_modeling/black_hole_mass.py +0 -0
- {diffsky-0.3.2/diffsky/experimental/diagnostics → diffsky-0.3.4/diffsky/experimental/black_hole_modeling}/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/black_hole_modeling/tests/test_black_hole_accretion_rate.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/black_hole_modeling/tests/test_black_hole_mass.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/black_hole_modeling/tests/test_utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/black_hole_modeling/utils.py +0 -0
- /diffsky-0.3.2/diffsky/experimental/dbk_from_mock2.py → /diffsky-0.3.4/diffsky/experimental/dbk_phot_from_mock.py +0 -0
- {diffsky-0.3.2/diffsky/experimental/disk_bulge_modeling → diffsky-0.3.4/diffsky/experimental/diagnostics}/__init__.py +0 -0
- {diffsky-0.3.2/diffsky/experimental/disk_bulge_modeling → diffsky-0.3.4/diffsky/experimental/diagnostics}/tests/__init__.py +0 -0
- {diffsky-0.3.2/diffsky/experimental/dspspop → diffsky-0.3.4/diffsky/experimental/disk_bulge_modeling}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/disk_bulge_modeling/disk_bulge_kernels.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/disk_bulge_modeling/disk_knots.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/disk_bulge_modeling/generate_bulge_disk_sample.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/disk_bulge_modeling/mc_disk_bulge.py +0 -0
- {diffsky-0.3.2/diffsky/experimental/dspspop → diffsky-0.3.4/diffsky/experimental/disk_bulge_modeling}/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/disk_bulge_modeling/tests/test_disk_bulge.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/disk_bulge_modeling/tests/test_disk_knots.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/disk_bulge_modeling/tests/test_generate_bulge_disk_sample.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/disk_bulge_modeling/tests/test_mc_disk_bulge.py +0 -0
- {diffsky-0.3.2/diffsky/experimental/kernels → diffsky-0.3.4/diffsky/experimental/dspspop}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/boris_dust.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/burstshapepop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/dust_deltapop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/dustpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/lgavpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/lgfburstpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/nagaraj22_dust.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/photpop.py +0 -0
- {diffsky-0.3.2/diffsky/experimental/kernels → diffsky-0.3.4/diffsky/experimental/dspspop}/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/tests/test_attavpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/tests/test_boris_dust.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/tests/test_burstshapepop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/tests/test_dustdeltapop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/tests/test_lgfburstpop.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/tests/test_photpop.py +0 -0
- {diffsky-0.3.2/diffsky/experimental/sfh_model_calibrations → diffsky-0.3.4/diffsky/experimental/kernels}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/kernels/dbk_kernels.py +0 -0
- {diffsky-0.3.2/diffsky/experimental/sfh_model_calibrations → diffsky-0.3.4/diffsky/experimental/kernels}/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/mc_diffstarpop_wrappers.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/phot_utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/photometry_interpolation.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/precompute_ssp_phot.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/scatter.py +0 -0
- {diffsky-0.3.2/diffsky/experimental/size_modeling → diffsky-0.3.4/diffsky/experimental/sfh_model_calibrations}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/sfh_model_calibrations/data/u_params_best_1015_galacticus_in_plus_ex_situ.npy +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/sfh_model_calibrations/data/u_params_best_1015_smdpl_dr1.npy +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/sfh_model_calibrations/data/u_params_best_1015_tng.npy +0 -0
- {diffsky-0.3.2/diffsky/experimental/size_modeling → diffsky-0.3.4/diffsky/experimental/sfh_model_calibrations}/tests/__init__.py +0 -0
- {diffsky-0.3.2/diffsky/experimental/tests → diffsky-0.3.4/diffsky/experimental/size_modeling}/__init__.py +0 -0
- {diffsky-0.3.2/diffsky/fake_sats → diffsky-0.3.4/diffsky/experimental/size_modeling/tests}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/size_modeling/tests/test_disk_bulge_sizes.py +0 -0
- {diffsky-0.3.2/diffsky/fake_sats → diffsky-0.3.4/diffsky/experimental}/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/tests/test_photometry_interpolation.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/tests/test_precompute_ssp_phot.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/tests/test_scatter.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/tests/test_sobol_lightcone.py +0 -0
- {diffsky-0.3.2/diffsky/mass_functions/fitting_utils → diffsky-0.3.4/diffsky/fake_sats}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/ellipsoidal_nfw_phase_space.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/ellipsoidal_velocities.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/halo_boundary_functions.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/nfw_config_space.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/rotations3d.py +0 -0
- {diffsky-0.3.2/diffsky/mass_functions/fitting_utils/calibrations → diffsky-0.3.4/diffsky/fake_sats/tests}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/tests/test_ellipsoidal_nfw_phase_space.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/tests/test_halo_boundary_functions.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/tests/test_mc_ellipticial_velocities.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/tests/test_nfw_config_space.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/tests/test_rotations3d.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/tests/testing_data/halo_mass_ht_test.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/tests/testing_data/halo_radius_200c_ht_test.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/tests/testing_data/redshift_ht_test.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/vector_utilities.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/ccshmf_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/README.rst +0 -0
- {diffsky-0.3.2/diffsky/mass_functions/fitting_utils/calibrations/tests → diffsky-0.3.4/diffsky/mass_functions/fitting_utils}/__init__.py +0 -0
- {diffsky-0.3.2/diffsky/mass_functions/fitting_utils/diagnostics → diffsky-0.3.4/diffsky/mass_functions/fitting_utils/calibrations}/__init__.py +0 -0
- {diffsky-0.3.2/diffsky/mass_functions/fitting_utils/diagnostics → diffsky-0.3.4/diffsky/mass_functions/fitting_utils/calibrations}/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/calibrations/tests/test_hacc_core_shmf_params.py +0 -0
- {diffsky-0.3.2/diffsky/mass_functions/fitting_utils/tests → diffsky-0.3.4/diffsky/mass_functions/fitting_utils/diagnostics}/__init__.py +0 -0
- {diffsky-0.3.2/diffsky/mass_functions/hmf_calibrations → diffsky-0.3.4/diffsky/mass_functions/fitting_utils/diagnostics}/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/fit_ccshmf.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/fit_ccshmf_kernels.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/fit_flat_hmf_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/fit_halobias_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/fit_halobias_singlez_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/fit_hmf_kernels.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/fit_hmf_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/fitting_helpers.py +0 -0
- {diffsky-0.3.2/diffsky/mass_functions/io_utils → diffsky-0.3.4/diffsky/mass_functions/fitting_utils/tests}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/tests/test_fit_ccshmf.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/tests/test_fit_ccshmf_kernels.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/tests/test_fit_flat_hmf_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/tests/test_fit_halobias_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/tests/test_fit_halobias_model_singlez.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/tests/test_fit_hmf_kernels.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/tests/test_fit_hmf_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/flat_hmf_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/halobias_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/halobias_singlez_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/disc_lcdm_hmf_params.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/disc_lcdm_hmf_params_all.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/hmf_param_reader.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/lj_hmf_params.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/lj_hmf_params_all.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/smdpl_hmf.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/smdpl_hmf_fitting_helpers.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/smdpl_hmf_subs.py +0 -0
- {diffsky-0.3.2/diffsky/mass_functions/kernels → diffsky-0.3.4/diffsky/mass_functions/hmf_calibrations/tests}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/test_imports.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/test_lj_hmf.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/test_smdpl_hmf.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/disc_lcdm_hmf_cuml_density_all.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/disc_lcdm_hmf_cuml_density_cens.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/disc_lcdm_hmf_logmp_bins.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/disc_lcdm_hmf_redshift_bins.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/lj_hmf_cuml_density_all.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/lj_hmf_cuml_density_cens.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/lj_hmf_logmp_bins.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/lj_hmf_redshift_bins.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_0.219000.subhalos.lgcuml_density.npy +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_0.219000.subhalos.logmp_bins.npy +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_0.460000.hosthalos.lgcuml_density.npy +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_0.460000.hosthalos.logmp_bins.npy +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_0.460000.subhalos.lgcuml_density.npy +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_0.460000.subhalos.logmp_bins.npy +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_1.000000.hosthalos.lgcuml_density.npy +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_1.000000.hosthalos.logmp_bins.npy +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_1.000000.subhalos.lgcuml_density.npy +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/sfr_catalog_1.000000.subhalos.logmp_bins.npy +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/io_utils/README.txt +0 -0
- {diffsky-0.3.2/diffsky/mass_functions/kernels/tests → diffsky-0.3.4/diffsky/mass_functions/io_utils}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/io_utils/loader.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/io_utils/smdpl_helpers.py +0 -0
- {diffsky-0.3.2/diffsky/mass_functions/smhm_kernels → diffsky-0.3.4/diffsky/mass_functions/kernels}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/kernels/ccshmf_kernels.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/kernels/hmf_kernels.py +0 -0
- {diffsky-0.3.2/diffsky/mass_functions/smhm_kernels → diffsky-0.3.4/diffsky/mass_functions/kernels}/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/kernels/tests/test_ccshmf_kernels.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/kernels/tests/test_hmf_kernels.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/mc_diffmah_tpeak.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/mc_hosts.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/mc_subs.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/mc_tinfall.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/measure_ccshmf.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/measure_hmf.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/scripts/discovery_lcdm_calibration/measure_hmf_target_data_hacc.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/scripts/discovery_lcdm_calibration/run_hmf_tabulation_disc_lcdm.sh +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/scripts/last_journey_calibration/measure_hmf_target_data_hacc.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/scripts/smdpl_calibration/fit_smdpl_hmf_script.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/scripts/smdpl_calibration/measure_smdpl_hmf_script.py +0 -0
- {diffsky-0.3.2/diffsky/mass_functions/tests → diffsky-0.3.4/diffsky/mass_functions/smhm_kernels}/__init__.py +0 -0
- {diffsky-0.3.2/diffsky/mass_functions/tests/testing_data → diffsky-0.3.4/diffsky/mass_functions/smhm_kernels/tests}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/smhm_kernels/tests/test_threeroll_smhm.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/smhm_kernels/threeroll_kernels.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/smhm_kernels/threeroll_smhm.py +0 -0
- {diffsky-0.3.2/diffsky/mass_functions/upweighting → diffsky-0.3.4/diffsky/mass_functions/tests}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_ccshmf.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_flat_hmf_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_halobias_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_halobias_singlez_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_hmf_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_mc_diffmah_tpeak.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_mc_hosts.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_mc_subs.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_mc_tinfall.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_measure_hmf.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/testing_data/README.txt +0 -0
- {diffsky-0.3.2/diffsky/mass_functions/upweighting/tests → diffsky-0.3.4/diffsky/mass_functions/tests/testing_data}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/testing_data/smdpl_cshmf_cuml_redshift_0.00_lgmhost_12.32.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/testing_data/smdpl_cshmf_cuml_redshift_0.00_lgmhost_13.00.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/testing_data/smdpl_cshmf_cuml_redshift_0.00_lgmhost_13.55.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/testing_data/smdpl_cshmf_cuml_redshift_0.00_lgmhost_14.08.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/testing_data/smdpl_cshmf_cuml_redshift_1.00_lgmhost_12.31.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/testing_data/smdpl_cshmf_cuml_redshift_1.00_lgmhost_12.99.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/testing_data/smdpl_cshmf_cuml_redshift_1.00_lgmhost_13.51.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/testing_data/smdpl_cshmf_cuml_redshift_1.00_lgmhost_14.05.txt +0 -0
- {diffsky-0.3.2/diffsky/merging → diffsky-0.3.4/diffsky/mass_functions/upweighting}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/upweighting/namedtuple_cat_utils.py +0 -0
- {diffsky-0.3.2/diffsky/merging/diagnostics → diffsky-0.3.4/diffsky/mass_functions/upweighting/tests}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/upweighting/tests/test_mc_gen_upweighting.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/upweighting/upweighting.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mc_diffsky.py +0 -0
- {diffsky-0.3.2/diffsky/merging/diagnostics/tests → diffsky-0.3.4/diffsky/merging}/__init__.py +0 -0
- {diffsky-0.3.2/diffsky/merging/tests → diffsky-0.3.4/diffsky/merging/diagnostics}/__init__.py +0 -0
- {diffsky-0.3.2/diffsky/param_utils → diffsky-0.3.4/diffsky/merging/diagnostics/tests}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/merging/fitmerge_multi_redshift.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/merging/merging_model.py +0 -0
- {diffsky-0.3.2/diffsky/param_utils → diffsky-0.3.4/diffsky/merging}/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/merging/tests/test_fitmerge_multi_redshift.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/merging/tests/test_merging_model.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/param_utils/diffsky_param_wrapper.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/param_utils/spspop_param_utils.py +0 -0
- {diffsky-0.3.2/diffsky/ssp_err_model → diffsky-0.3.4/diffsky/param_utils/tests}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/param_utils/tests/test_diffsky_param_wrapper.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/param_utils/tests/test_spspop_param_utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/phot_utils.py +0 -0
- {diffsky-0.3.2/diffsky/ssp_err_model/tests → diffsky-0.3.4/diffsky/ssp_err_model}/__init__.py +0 -0
- {diffsky-0.3.2/diffsky/ssp_err_model2 → diffsky-0.3.4/diffsky/ssp_err_model}/defaults.py +0 -0
- {diffsky-0.3.2/diffsky/ssp_err_model2 → diffsky-0.3.4/diffsky/ssp_err_model}/ssp_err_model.py +0 -0
- {diffsky-0.3.2/diffsky/ssp_err_model2 → diffsky-0.3.4/diffsky/ssp_err_model/tests}/__init__.py +0 -0
- {diffsky-0.3.2/diffsky/ssp_err_model2 → diffsky-0.3.4/diffsky/ssp_err_model}/tests/test_ssp_err_model.py +0 -0
- {diffsky-0.3.2/diffsky/ssp_err_model2/tests → diffsky-0.3.4/diffsky/sumstats}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/sumstats/diffndhist.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/sumstats/smhm.py +0 -0
- {diffsky-0.3.2/diffsky/sumstats → diffsky-0.3.4/diffsky/sumstats/tests}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/sumstats/tests/test_smhm.py +0 -0
- {diffsky-0.3.2/diffsky/sumstats → diffsky-0.3.4/diffsky}/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/tests/test_dependencies.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/tests/test_diffndhist.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/tests/test_diffsky_setup.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/tests/test_imports.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/tests/test_mc_diffsky.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/tests/test_phot_utils.py +0 -0
- {diffsky-0.3.2/diffsky/systematics → diffsky-0.3.4/diffsky/tests/testing_data}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/crossmatch_utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/sfh_utils.py +0 -0
- {diffsky-0.3.2/diffsky/systematics → diffsky-0.3.4/diffsky/utils}/tests/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/tests/test_crossmatch_utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/tests/test_sfh_utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/tests/test_tw_utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/tests/test_utility_funcs.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/tw_utils.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/utility_funcs.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky.egg-info/dependency_links.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/diffsky.egg-info/top_level.txt +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/docs/Makefile +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/docs/make.bat +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/citation.rst +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/demo_diffmahpop_lightcone.ipynb +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/demo_diffmahpop_t_peak.ipynb +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/demo_diffsky_recompute_from_mock.ipynb +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/demos.rst +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/index.rst +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/installation.rst +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/pyproject.toml +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_CROSSX/bebop_jobs.sh +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_CROSSX/inspect_lc_crossx_data.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_CROSSX/run_lc_cf_crossmatch_base.sh +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_CROSSX/run_tabulate_coreforest_overlap.sh +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_CROSSX/tabulate_coreforest_overlap.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_LC_MOCKS/generate_sed_mock_jobs.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_LC_MOCKS/generate_sfh_mock_jobs.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_LC_MOCKS/inspect_sed_mock_job_logs.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_SNAP_MOCKS/make_sfh_lj_snapshot_mock.py +0 -0
- {diffsky-0.3.2/diffsky/tests → diffsky-0.3.4/scripts}/__init__.py +0 -0
- {diffsky-0.3.2/diffsky/tests/testing_data → diffsky-0.3.4/scripts/tests}/__init__.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/scripts/tests/test_inspect_lightcone_mock.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/scripts/tests/test_tabulate_coreforest_overlap.py +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/setup.cfg +0 -0
- {diffsky-0.3.2 → diffsky-0.3.4}/setup.py +0 -0
|
@@ -23,7 +23,7 @@ jobs:
|
|
|
23
23
|
remove_dotnet: true
|
|
24
24
|
remove_haskell: true
|
|
25
25
|
rm_cmd: "rmz"
|
|
26
|
-
|
|
26
|
+
|
|
27
27
|
- uses: actions/checkout@v6
|
|
28
28
|
with:
|
|
29
29
|
fetch-depth: 0
|
|
@@ -71,7 +71,7 @@ jobs:
|
|
|
71
71
|
|
|
72
72
|
# Download data
|
|
73
73
|
cd dsps_drn
|
|
74
|
-
wget https://portal.nersc.gov/project/hacc/aphearin/DSPS_data/ssp_data_fsps_v3.
|
|
74
|
+
wget https://portal.nersc.gov/project/hacc/aphearin/DSPS_data/ssp_data_fsps_v3.2_emlines.hdf5
|
|
75
75
|
cd filters
|
|
76
76
|
wget https://portal.nersc.gov/project/hacc/aphearin/DSPS_data/filters/lsst_u_transmission.h5
|
|
77
77
|
wget https://portal.nersc.gov/project/hacc/aphearin/DSPS_data/filters/lsst_g_transmission.h5
|
|
@@ -86,14 +86,14 @@ jobs:
|
|
|
86
86
|
export DSPS_DRN="${GITHUB_WORKSPACE}/dsps_drn"
|
|
87
87
|
echo "DSPS_DRN=${DSPS_DRN}" >> $GITHUB_ENV
|
|
88
88
|
|
|
89
|
-
- name:
|
|
89
|
+
- name: create mock with sfh_model option
|
|
90
90
|
shell: bash -l {0}
|
|
91
91
|
run: |
|
|
92
92
|
# Create output directory
|
|
93
93
|
mkdir -p ci_test_output
|
|
94
94
|
|
|
95
95
|
# Run mock production script
|
|
96
|
-
mpiexec -n 1 python scripts/LJ_LC_MOCKS/
|
|
96
|
+
mpiexec -n 1 python scripts/LJ_LC_MOCKS/make_ou26_mock_batch.py \
|
|
97
97
|
poboy \
|
|
98
98
|
0.01 \
|
|
99
99
|
0.2 \
|
|
@@ -101,7 +101,6 @@ jobs:
|
|
|
101
101
|
1 \
|
|
102
102
|
ci_test_output \
|
|
103
103
|
ci_test_mock \
|
|
104
|
-
-fn_u_params sfh_model \
|
|
105
104
|
-sfh_model smdpl_dr1 \
|
|
106
105
|
-synthetic_cores 1 \
|
|
107
106
|
-lgmp_min 12.0 \
|
|
@@ -111,10 +110,87 @@ jobs:
|
|
|
111
110
|
- name: verify script completed
|
|
112
111
|
shell: bash -l {0}
|
|
113
112
|
run: |
|
|
114
|
-
echo "
|
|
113
|
+
echo "sfh_model mock generated successfully"
|
|
115
114
|
|
|
116
115
|
- name: validate mock
|
|
117
116
|
shell: bash -l {0}
|
|
118
117
|
run: |
|
|
119
|
-
python scripts/LJ_LC_MOCKS/inspect_lc_mock.py ci_test_output/
|
|
118
|
+
python scripts/LJ_LC_MOCKS/inspect_lc_mock.py ci_test_output/smdpl_dr1
|
|
119
|
+
|
|
120
|
+
- name: remove sfh_model mock
|
|
121
|
+
shell: bash -l {0}
|
|
122
|
+
run: |
|
|
123
|
+
rm -rf ci_test_output
|
|
124
|
+
|
|
125
|
+
- name: create mock with cosmos_fit option
|
|
126
|
+
shell: bash -l {0}
|
|
127
|
+
run: |
|
|
128
|
+
# Create output directory
|
|
129
|
+
mkdir -p ci_test_output
|
|
130
|
+
|
|
131
|
+
# Run mock production script
|
|
132
|
+
mpiexec -n 1 python scripts/LJ_LC_MOCKS/make_ou26_mock_batch.py \
|
|
133
|
+
poboy \
|
|
134
|
+
0.01 \
|
|
135
|
+
0.2 \
|
|
136
|
+
0 \
|
|
137
|
+
1 \
|
|
138
|
+
ci_test_output \
|
|
139
|
+
ci_test_mock \
|
|
140
|
+
-cosmos_fit cosmos_260120_UM \
|
|
141
|
+
-synthetic_cores 1 \
|
|
142
|
+
-lgmp_min 12.0 \
|
|
143
|
+
-lgmp_max 13.0 \
|
|
144
|
+
--lsst_only
|
|
145
|
+
|
|
146
|
+
- name: verify script completed
|
|
147
|
+
shell: bash -l {0}
|
|
148
|
+
run: |
|
|
149
|
+
echo "sfh_model mock generated successfully"
|
|
150
|
+
|
|
151
|
+
- name: validate mock
|
|
152
|
+
shell: bash -l {0}
|
|
153
|
+
run: |
|
|
154
|
+
python scripts/LJ_LC_MOCKS/inspect_lc_mock.py ci_test_output/cosmos_260120_UM
|
|
155
|
+
|
|
156
|
+
- name: remove cosmos_fit mock
|
|
157
|
+
shell: bash -l {0}
|
|
158
|
+
run: |
|
|
159
|
+
rm -rf ci_test_output
|
|
160
|
+
|
|
161
|
+
- name: create mock with no_dbk option
|
|
162
|
+
shell: bash -l {0}
|
|
163
|
+
run: |
|
|
164
|
+
# Create output directory
|
|
165
|
+
mkdir -p ci_test_output
|
|
166
|
+
|
|
167
|
+
# Run mock production script
|
|
168
|
+
mpiexec -n 1 python scripts/LJ_LC_MOCKS/make_ou26_mock_batch.py \
|
|
169
|
+
poboy \
|
|
170
|
+
0.01 \
|
|
171
|
+
0.2 \
|
|
172
|
+
0 \
|
|
173
|
+
1 \
|
|
174
|
+
ci_test_output \
|
|
175
|
+
ci_test_mock \
|
|
176
|
+
-cosmos_fit cosmos_260120_UM \
|
|
177
|
+
-synthetic_cores 1 \
|
|
178
|
+
-lgmp_min 12.0 \
|
|
179
|
+
-lgmp_max 13.0 \
|
|
180
|
+
--lsst_only --no_dbk
|
|
181
|
+
|
|
182
|
+
- name: verify script completed
|
|
183
|
+
shell: bash -l {0}
|
|
184
|
+
run: |
|
|
185
|
+
echo "sfh_model mock generated successfully"
|
|
186
|
+
|
|
187
|
+
- name: validate mock
|
|
188
|
+
shell: bash -l {0}
|
|
189
|
+
run: |
|
|
190
|
+
python scripts/LJ_LC_MOCKS/inspect_lc_mock.py ci_test_output/cosmos_260120_UM --no_dbk
|
|
191
|
+
|
|
192
|
+
- name: remove cosmos_fit mock
|
|
193
|
+
shell: bash -l {0}
|
|
194
|
+
run: |
|
|
195
|
+
rm -rf ci_test_output
|
|
120
196
|
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
name: Test script for optimizing galaxy shapes
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch: null
|
|
5
|
+
schedule:
|
|
6
|
+
# Runs "every Monday & Thursday at 3:05am Central"
|
|
7
|
+
- cron: '5 8 * * 1,4'
|
|
8
|
+
push:
|
|
9
|
+
branches:
|
|
10
|
+
- main
|
|
11
|
+
pull_request: null
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
mock-generation:
|
|
15
|
+
name: python fit_bulge_shapes_to_rp13.py
|
|
16
|
+
runs-on: "ubuntu-latest"
|
|
17
|
+
|
|
18
|
+
steps:
|
|
19
|
+
- name: free disk space
|
|
20
|
+
uses: endersonmenezes/free-disk-space@v3
|
|
21
|
+
with:
|
|
22
|
+
remove_android: true
|
|
23
|
+
remove_dotnet: true
|
|
24
|
+
remove_haskell: true
|
|
25
|
+
rm_cmd: "rmz"
|
|
26
|
+
|
|
27
|
+
- uses: actions/checkout@v6
|
|
28
|
+
with:
|
|
29
|
+
fetch-depth: 0
|
|
30
|
+
|
|
31
|
+
- uses: conda-incubator/setup-miniconda@v3
|
|
32
|
+
with:
|
|
33
|
+
python-version: 3.11
|
|
34
|
+
channels: conda-forge
|
|
35
|
+
channel-priority: strict
|
|
36
|
+
show-channel-urls: true
|
|
37
|
+
miniforge-version: latest
|
|
38
|
+
|
|
39
|
+
- name: configure conda and install code
|
|
40
|
+
shell: bash -l {0}
|
|
41
|
+
env:
|
|
42
|
+
GITHUB_TOKEN: ${{ secrets.CPAC_PRIVATE_REPO_TOKEN }}
|
|
43
|
+
GITHUB_USER: ${{ secrets.GH_USR_TESTING_TOKEN }}
|
|
44
|
+
|
|
45
|
+
run: |
|
|
46
|
+
conda config --set always_yes yes
|
|
47
|
+
conda install --quiet \
|
|
48
|
+
--file=requirements.txt
|
|
49
|
+
conda install --quiet \
|
|
50
|
+
pip \
|
|
51
|
+
setuptools \
|
|
52
|
+
"setuptools_scm>=7,<8" \
|
|
53
|
+
matplotlib \
|
|
54
|
+
astropy \
|
|
55
|
+
h5py \
|
|
56
|
+
mpi4py \
|
|
57
|
+
mpich
|
|
58
|
+
conda uninstall diffmah --force
|
|
59
|
+
conda uninstall diffstar --force
|
|
60
|
+
conda uninstall dsps --force
|
|
61
|
+
pip install --no-deps --no-build-isolation git+https://github.com/ArgonneCPAC/diffmah.git
|
|
62
|
+
pip install --no-deps --no-build-isolation git+https://github.com/ArgonneCPAC/diffstar.git
|
|
63
|
+
pip install --no-deps --no-build-isolation git+https://github.com/ArgonneCPAC/dsps.git
|
|
64
|
+
python -m pip install --no-build-isolation --no-deps -e .
|
|
65
|
+
|
|
66
|
+
- name: run disk optimization script
|
|
67
|
+
shell: bash -l {0}
|
|
68
|
+
run: |
|
|
69
|
+
python scripts/ellipsoid_shape_fitting/fit_disk_shapes_to_rp13.py -nsteps 20
|
|
70
|
+
|
|
71
|
+
- name: verify disk script completed
|
|
72
|
+
shell: bash -l {0}
|
|
73
|
+
run: |
|
|
74
|
+
echo "Disk optimization script completed successfully"
|
|
75
|
+
|
|
76
|
+
- name: run bulge optimization script
|
|
77
|
+
shell: bash -l {0}
|
|
78
|
+
run: |
|
|
79
|
+
python scripts/ellipsoid_shape_fitting/fit_bulge_shapes_to_rp13.py -nsteps 20
|
|
80
|
+
|
|
81
|
+
- name: verify bulge script completed
|
|
82
|
+
shell: bash -l {0}
|
|
83
|
+
run: |
|
|
84
|
+
echo "Bulge optimization script completed successfully"
|
|
85
|
+
|
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
0.3.4 (2026-02-05)
|
|
2
|
+
-------------------
|
|
3
|
+
- Reduce mock filesize by 10x by omitting redundant dust parameters (https://github.com/ArgonneCPAC/diffsky/pull/317)
|
|
4
|
+
- Add feature to make mocks with/out disk/bulge/knot decomposition (https://github.com/ArgonneCPAC/diffsky/pull/317)
|
|
5
|
+
- Require Numpy>=2 (https://github.com/ArgonneCPAC/diffsky/pull/331)
|
|
6
|
+
- Include emission line fluxes in output mock (https://github.com/ArgonneCPAC/diffsky/pull/335)
|
|
7
|
+
- Mock galaxies populating both synthetic and simulated halos are written out to the same directory (https://github.com/ArgonneCPAC/diffsky/pull/336)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
0.3.3 (2026-01-06)
|
|
11
|
+
-------------------
|
|
12
|
+
- Fix bug in elliptical projections
|
|
13
|
+
- https://github.com/ArgonneCPAC/diffsky/pull/297
|
|
14
|
+
- Reoptimize disk/bulge shapes
|
|
15
|
+
- https://github.com/ArgonneCPAC/diffsky/pull/301
|
|
16
|
+
- Implement automated plot-generating scripts comparing cosmos to different diffsky models
|
|
17
|
+
- https://github.com/ArgonneCPAC/diffsky/pull/291
|
|
18
|
+
- Improve bookkeeping in cross-matching jobs
|
|
19
|
+
- https://github.com/ArgonneCPAC/diffsky/pull/293
|
|
20
|
+
- https://github.com/ArgonneCPAC/diffsky/pull/294
|
|
21
|
+
- https://github.com/ArgonneCPAC/diffsky/pull/299
|
|
22
|
+
- https://github.com/ArgonneCPAC/diffsky/pull/300
|
|
23
|
+
- Compute photometry in batches when making mocks
|
|
24
|
+
- https://github.com/ArgonneCPAC/diffsky/pull/295
|
|
25
|
+
- Adopt astropy units in mock metadata
|
|
26
|
+
- https://github.com/ArgonneCPAC/diffsky/pull/303
|
|
27
|
+
- Add peculiar velocities to output mock
|
|
28
|
+
- https://github.com/ArgonneCPAC/diffsky/pull/304
|
|
29
|
+
|
|
30
|
+
|
|
1
31
|
0.3.2 (2025-12-04)
|
|
2
32
|
-------------------
|
|
3
33
|
- Resolve bug in the treatment of scatter in the SSP errors.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: diffsky
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.4
|
|
4
4
|
Summary: Library for differentiable generation of synthetic skies
|
|
5
5
|
Author-email: Andrew Hearin <ahearin@anl.gov>
|
|
6
6
|
License: BSD 3-Clause License
|
|
@@ -38,7 +38,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
38
38
|
Requires-Python: >=3.11
|
|
39
39
|
Description-Content-Type: text/x-rst
|
|
40
40
|
License-File: LICENSE.rst
|
|
41
|
-
Requires-Dist: numpy
|
|
41
|
+
Requires-Dist: numpy>=2
|
|
42
42
|
Requires-Dist: jax
|
|
43
43
|
Requires-Dist: diffmah>=0.7.3
|
|
44
44
|
Requires-Dist: diffstar>=1.0.1
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '0.3.4'
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
""" """
|
|
2
2
|
|
|
3
3
|
import numpy as np
|
|
4
|
-
from matplotlib import pyplot as plt
|
|
5
4
|
|
|
6
5
|
from ..fburstpop import DEFAULT_FBURSTPOP_PARAMS, get_lgfburst_from_fburstpop_params
|
|
7
6
|
|
|
7
|
+
try:
|
|
8
|
+
from matplotlib import pyplot as plt
|
|
9
|
+
|
|
10
|
+
HAS_MATPLOTLIB = True
|
|
11
|
+
except ImportError:
|
|
12
|
+
HAS_MATPLOTLIB = False
|
|
13
|
+
MATPLOTLIB_MSG = "Must have matplotlib installed to use this function"
|
|
14
|
+
|
|
8
15
|
|
|
9
16
|
def make_fburstpop_comparison_plot(
|
|
10
17
|
params,
|
|
@@ -28,6 +35,8 @@ def make_fburstpop_comparison_plot(
|
|
|
28
35
|
filename of the output figure
|
|
29
36
|
|
|
30
37
|
"""
|
|
38
|
+
assert HAS_MATPLOTLIB, MATPLOTLIB_MSG
|
|
39
|
+
|
|
31
40
|
nsm, nsfr = 250, 250
|
|
32
41
|
logsm_grid = np.linspace(7, 12, nsm)
|
|
33
42
|
logssfr_grid = np.linspace(-13, -8, nsfr)
|
|
@@ -2,11 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
import numpy as np
|
|
4
4
|
from dsps.sfh import diffburst
|
|
5
|
-
from matplotlib import lines as mlines
|
|
6
|
-
from matplotlib import pyplot as plt
|
|
7
5
|
|
|
8
6
|
from .. import tburstpop as tbp
|
|
9
7
|
|
|
8
|
+
try:
|
|
9
|
+
from matplotlib import lines as mlines
|
|
10
|
+
from matplotlib import pyplot as plt
|
|
11
|
+
|
|
12
|
+
HAS_MATPLOTLIB = True
|
|
13
|
+
except ImportError:
|
|
14
|
+
HAS_MATPLOTLIB = False
|
|
15
|
+
MATPLOTLIB_MSG = "Must have matplotlib installed to use this function"
|
|
16
|
+
|
|
10
17
|
|
|
11
18
|
def make_tburstpop_comparison_plot(
|
|
12
19
|
params,
|
|
@@ -30,6 +37,7 @@ def make_tburstpop_comparison_plot(
|
|
|
30
37
|
filename of the output figure
|
|
31
38
|
|
|
32
39
|
"""
|
|
40
|
+
assert HAS_MATPLOTLIB, MATPLOTLIB_MSG
|
|
33
41
|
lgyrarr = np.linspace(5, 9.05, 100)
|
|
34
42
|
|
|
35
43
|
logsmarr = np.array((9.0, 9.0, 12.0, 12.0))
|
|
@@ -2,11 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
import os
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
import pytest
|
|
6
|
+
|
|
7
|
+
from ..plot_fburstpop import (
|
|
8
|
+
DEFAULT_FBURSTPOP_PARAMS,
|
|
9
|
+
HAS_MATPLOTLIB,
|
|
10
|
+
MATPLOTLIB_MSG,
|
|
11
|
+
make_fburstpop_comparison_plot,
|
|
12
|
+
)
|
|
6
13
|
|
|
7
14
|
_THIS_DRNAME = os.path.dirname(os.path.abspath(__file__))
|
|
8
15
|
|
|
9
16
|
|
|
17
|
+
@pytest.mark.skipif(not HAS_MATPLOTLIB, reason=MATPLOTLIB_MSG)
|
|
10
18
|
def test_make_freqburst_comparison_plot():
|
|
11
19
|
fn = os.path.join(_THIS_DRNAME, "dummy.png")
|
|
12
20
|
make_fburstpop_comparison_plot(DEFAULT_FBURSTPOP_PARAMS, fname=fn)
|
|
@@ -2,12 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
import os
|
|
4
4
|
|
|
5
|
+
import pytest
|
|
6
|
+
|
|
5
7
|
from ... import tburstpop as tbp
|
|
6
|
-
from ..plot_tburstpop import
|
|
8
|
+
from ..plot_tburstpop import (
|
|
9
|
+
HAS_MATPLOTLIB,
|
|
10
|
+
MATPLOTLIB_MSG,
|
|
11
|
+
make_tburstpop_comparison_plot,
|
|
12
|
+
)
|
|
7
13
|
|
|
8
14
|
_THIS_DRNAME = os.path.dirname(os.path.abspath(__file__))
|
|
9
15
|
|
|
10
16
|
|
|
17
|
+
@pytest.mark.skipif(not HAS_MATPLOTLIB, reason=MATPLOTLIB_MSG)
|
|
11
18
|
def test_make_freqburst_comparison_plot():
|
|
12
19
|
fn = os.path.join(_THIS_DRNAME, "dummy.png")
|
|
13
20
|
make_tburstpop_comparison_plot(tbp.DEFAULT_TBURSTPOP_PARAMS, fname=fn)
|
|
@@ -13,6 +13,15 @@ except ImportError:
|
|
|
13
13
|
HAS_ASTROPY = False
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
Z_MIN, Z_MAX = 0.4, 2.5
|
|
17
|
+
|
|
18
|
+
HSC_MAG_NAMES = ["HSC_g_MAG", "HSC_r_MAG", "HSC_i_MAG", "HSC_z_MAG", "HSC_y_MAG"]
|
|
19
|
+
UVISTA_MAG_NAMES = ["UVISTA_Y_MAG", "UVISTA_J_MAG", "UVISTA_H_MAG", "UVISTA_Ks_MAG"]
|
|
20
|
+
COSMOS_TARGET_MAGS = [*HSC_MAG_NAMES, *UVISTA_MAG_NAMES]
|
|
21
|
+
MAGI_THRESH = 25.5
|
|
22
|
+
|
|
23
|
+
NANFILL = -999.0
|
|
24
|
+
|
|
16
25
|
COSMOS20_BASENAME = "COSMOS2020_Farmer_processed_hlin.fits"
|
|
17
26
|
|
|
18
27
|
SKY_AREA = 1.21 # square degrees
|
|
@@ -103,4 +112,85 @@ def load_cosmos20(
|
|
|
103
112
|
else:
|
|
104
113
|
return cat
|
|
105
114
|
|
|
106
|
-
|
|
115
|
+
|
|
116
|
+
def apply_nan_cuts(cosmos, mag_names=COSMOS_TARGET_MAGS):
|
|
117
|
+
"""Remove any galaxy with a NaN in any column storing a target magnitude
|
|
118
|
+
|
|
119
|
+
Parameters
|
|
120
|
+
----------
|
|
121
|
+
cosmos : astropy Table
|
|
122
|
+
|
|
123
|
+
mag_names : list of strings
|
|
124
|
+
|
|
125
|
+
Returns
|
|
126
|
+
-------
|
|
127
|
+
cosmos : astropy Table
|
|
128
|
+
Catalog after applying a NaN cut on `photoz` and any colname in mag_names
|
|
129
|
+
|
|
130
|
+
"""
|
|
131
|
+
msk_has_nan = np.isnan(cosmos["photoz"])
|
|
132
|
+
for name in mag_names:
|
|
133
|
+
x = np.nan_to_num(
|
|
134
|
+
cosmos[name], copy=True, nan=NANFILL, posinf=NANFILL, neginf=NANFILL
|
|
135
|
+
)
|
|
136
|
+
msk_has_nan = msk_has_nan | (x == NANFILL)
|
|
137
|
+
|
|
138
|
+
cosmos = cosmos[~msk_has_nan]
|
|
139
|
+
return cosmos
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
def get_is_complete_mask(cosmos, z_min=Z_MIN, z_max=Z_MAX, magi_thresh=MAGI_THRESH):
|
|
143
|
+
"""Compute mask to define the redshift and i-mag threshold for our target data
|
|
144
|
+
|
|
145
|
+
Parameters
|
|
146
|
+
----------
|
|
147
|
+
cosmos : astropy Table
|
|
148
|
+
|
|
149
|
+
z_min, z_max : float
|
|
150
|
+
Galaxies outside this range will be excluded
|
|
151
|
+
|
|
152
|
+
magi_thresh : float
|
|
153
|
+
Galaxies fainter than this apparent magnitude will be excluded
|
|
154
|
+
|
|
155
|
+
Returns
|
|
156
|
+
-------
|
|
157
|
+
msk_is_complete : array, dtype bool
|
|
158
|
+
Boolean mask defining galaxies that pass the completeness cut
|
|
159
|
+
|
|
160
|
+
"""
|
|
161
|
+
msk_redshift = (cosmos["photoz"] > z_min) & (cosmos["photoz"] < z_max)
|
|
162
|
+
msk_i_thresh = cosmos["HSC_i_MAG"] < magi_thresh
|
|
163
|
+
msk_is_complete = msk_redshift & msk_i_thresh
|
|
164
|
+
return msk_is_complete
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
def get_color_outlier_mask(cosmos, mag_names, p_cut=0.5):
|
|
168
|
+
"""Compute mask to define extreme outliers in color space
|
|
169
|
+
|
|
170
|
+
Parameters
|
|
171
|
+
----------
|
|
172
|
+
cosmos : astropy Table
|
|
173
|
+
|
|
174
|
+
mag_names : list of strings
|
|
175
|
+
Column names defining the colors for which outliers will be excluded
|
|
176
|
+
|
|
177
|
+
p_cut : float, optional
|
|
178
|
+
Value in the range [0, 100] defining a percentile cut
|
|
179
|
+
|
|
180
|
+
Returns
|
|
181
|
+
-------
|
|
182
|
+
msk_is_not_outlier : array, dtype bool
|
|
183
|
+
Boolean mask defining galaxies that pass the outlier cut
|
|
184
|
+
|
|
185
|
+
"""
|
|
186
|
+
msk_is_outlier = np.zeros(len(cosmos)).astype(bool)
|
|
187
|
+
for name0, name1 in zip(mag_names[0:], mag_names[1:]):
|
|
188
|
+
c0 = cosmos[name0]
|
|
189
|
+
c1 = cosmos[name1]
|
|
190
|
+
color = c0 - c1
|
|
191
|
+
lo, hi = np.percentile(color, (p_cut, 100.0 - p_cut))
|
|
192
|
+
msk_is_outlier = msk_is_outlier | (color < lo) | (color > hi)
|
|
193
|
+
|
|
194
|
+
msk_is_not_outlier = ~msk_is_outlier
|
|
195
|
+
|
|
196
|
+
return msk_is_not_outlier
|