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.
Files changed (521) hide show
  1. {diffsky-0.3.2 → diffsky-0.3.4}/.github/workflows/mock_generation_test.yaml +83 -7
  2. diffsky-0.3.4/.github/workflows/shape_optimization.yaml +85 -0
  3. {diffsky-0.3.2 → diffsky-0.3.4}/.github/workflows/test_main_branch.yaml +1 -0
  4. {diffsky-0.3.2 → diffsky-0.3.4}/.github/workflows/tests_cron.yaml +1 -0
  5. {diffsky-0.3.2 → diffsky-0.3.4}/.gitignore +1 -0
  6. {diffsky-0.3.2 → diffsky-0.3.4}/CHANGES.rst +30 -0
  7. {diffsky-0.3.2 → diffsky-0.3.4}/PKG-INFO +2 -2
  8. diffsky-0.3.4/diffsky/_version.py +1 -0
  9. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diagnostics/plot_fburstpop.py +10 -1
  10. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diagnostics/plot_tburstpop.py +10 -2
  11. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diagnostics/tests/test_plot_fburstpop.py +9 -1
  12. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diagnostics/tests/test_plot_tburstpop.py +8 -1
  13. diffsky-0.3.4/diffsky/data_loaders/__init__.py +6 -0
  14. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/cosmos20_loader.py +91 -1
  15. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data_validation/validate_lc_mock.py +139 -54
  16. 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
  17. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/lightcone_utils.py +55 -16
  18. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/load_lc_cf.py +3 -3
  19. diffsky-0.3.4/diffsky/data_loaders/hacc_utils/load_lc_cf_synthetic.py +162 -0
  20. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/load_lc_mock.py +66 -7
  21. diffsky-0.3.4/diffsky/data_loaders/hacc_utils/metadata_mock.py +641 -0
  22. 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
  23. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/test_lightcone_utils.py +50 -1
  24. diffsky-0.3.4/diffsky/data_loaders/hacc_utils/tests/test_load_lc_cf_synthetic.py +52 -0
  25. diffsky-0.3.4/diffsky/data_loaders/hacc_utils/tests/test_metadata_mock.py +32 -0
  26. diffsky-0.3.4/diffsky/data_loaders/load_ssp_data.py +129 -0
  27. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/tests/test_cosmos_loader.py +33 -0
  28. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/tests/test_io_utils.py +3 -2
  29. diffsky-0.3.4/diffsky/data_loaders/tests/test_load_ssp_data.py +79 -0
  30. diffsky-0.3.4/diffsky/diagnostics/plot_cosmos.py +716 -0
  31. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/diagnostics/plot_diffstar_fq.py +4 -0
  32. diffsky-0.3.4/diffsky/diagnostics/tests/test_plot_cosmos.py +51 -0
  33. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/diagnostics/tests/test_plot_diffstar_fq.py +7 -2
  34. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/diagnostics/plot_avpop_flex.py +11 -1
  35. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/diagnostics/plot_funopop_simple.py +10 -1
  36. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/diagnostics/tests/test_plot_avpop_flex.py +9 -1
  37. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/diagnostics/tests/test_plot_funopop_simple.py +9 -1
  38. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/bulge_opt.py +1 -1
  39. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/bulge_shapes.py +1 -1
  40. diffsky-0.3.4/diffsky/ellipsoidal_shapes/diagnostics/plot_b_over_a_rp13.py +151 -0
  41. diffsky-0.3.4/diffsky/ellipsoidal_shapes/diagnostics/tests/test_plot_b_over_a_rp13.py +15 -0
  42. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/disk_opt.py +1 -1
  43. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/disk_shapes.py +3 -1
  44. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/ellipse_proj_kernels.py +54 -68
  45. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/tests/test_ellipse_proj_kernels.py +70 -21
  46. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/diagnostics/check_smhm.py +5 -0
  47. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/diagnostics/tests/test_check_smhm.py +5 -2
  48. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/kernels/mc_phot_kernels.py +176 -5
  49. 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
  50. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/kernels/tests/test_mc_phot_kernels.py +54 -6
  51. diffsky-0.3.2/diffsky/experimental/lc_phot_kern_repro.py → diffsky-0.3.4/diffsky/experimental/lc_phot_kern.py +1 -1
  52. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/lc_utils.py +35 -0
  53. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/mc_lightcone_halos.py +139 -473
  54. diffsky-0.3.2/diffsky/experimental/mc_phot_repro.py → diffsky-0.3.4/diffsky/experimental/mc_phot.py +3 -3
  55. diffsky-0.3.4/diffsky/experimental/sfh_model_calibrations/load_diffsky_sfh_model_calibrations.py +67 -0
  56. diffsky-0.3.4/diffsky/experimental/sfh_model_calibrations/tests/test_load_diffsky_sfh_model_calibrations.py +25 -0
  57. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/size_modeling/disk_bulge_sizes.py +2 -2
  58. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/tests/test_dbk_from_mock2.py +10 -8
  59. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/tests/test_lc_phot_kern.py +1 -1
  60. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/tests/test_lc_utils.py +15 -0
  61. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/tests/test_mc_lightcone_halos.py +55 -104
  62. 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
  63. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/calibrations/hacc_core_shmf_params.py +1 -1
  64. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/diagnostics/hmf_fit_diagnostics.py +15 -6
  65. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/diagnostics/tests/test_hmf_fit_diagnostics.py +3 -2
  66. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/scripts/discovery_lcdm_calibration/fit_hmf_disc_lcdm.py +11 -2
  67. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/scripts/last_journey_calibration/fit_hmf_lj.py +11 -2
  68. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/merging/diagnostics/plot_pmerge_vs_time.py +12 -2
  69. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/merging/diagnostics/tests/test_plot_pmerge_vs_time.py +8 -1
  70. diffsky-0.3.4/diffsky/param_utils/__init__.py +4 -0
  71. diffsky-0.3.4/diffsky/param_utils/cosmos_calibrations/__init__.py +9 -0
  72. diffsky-0.3.4/diffsky/param_utils/cosmos_calibrations/cosmos_params_260105.py +238 -0
  73. diffsky-0.3.4/diffsky/param_utils/cosmos_calibrations/cosmos_params_260120_UM.py +238 -0
  74. diffsky-0.3.4/diffsky/param_utils/get_mock_params.py +31 -0
  75. diffsky-0.3.4/diffsky/param_utils/tests/test_get_mock_params.py +27 -0
  76. diffsky-0.3.4/diffsky/signdhist.py +159 -0
  77. diffsky-0.3.4/diffsky/tests/test_readme.py +18 -0
  78. diffsky-0.3.4/diffsky/tests/test_signdhist.py +130 -0
  79. diffsky-0.3.4/diffsky/utils/emline_utils.py +38 -0
  80. diffsky-0.3.4/diffsky/utils/tests/test_emline_utils.py +39 -0
  81. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky.egg-info/PKG-INFO +2 -2
  82. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky.egg-info/SOURCES.txt +33 -32
  83. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky.egg-info/requires.txt +1 -1
  84. {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/conf.py +7 -8
  85. {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/demo_diffsky_lightcone.ipynb +4 -4
  86. {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/rtd_environment.yaml +1 -1
  87. {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/validate_mc_lightcones.ipynb +40 -3
  88. {diffsky-0.3.2 → diffsky-0.3.4}/requirements.txt +1 -1
  89. diffsky-0.3.4/scripts/LJ_CROSSX/check_lc_cf_completeness.py +183 -0
  90. diffsky-0.3.4/scripts/LJ_CROSSX/generate_lj_cf_crossmatch_holepatch_jobs.py +118 -0
  91. {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_CROSSX/generate_lj_cf_crossmatch_jobs.py +3 -1
  92. {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_CROSSX/inspect_lc_cf_crossx_job_logs.py +4 -0
  93. {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_CROSSX/lc_cf_crossmatch_script.py +3 -3
  94. diffsky-0.3.4/scripts/LJ_LC_MOCKS/check_lc_mock_completeness.py +70 -0
  95. {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_LC_MOCKS/inspect_lc_mock.py +48 -7
  96. diffsky-0.3.4/scripts/LJ_LC_MOCKS/make_ou26_mock_batch.py +524 -0
  97. {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_LC_MOCKS/run_sed_mocks.sh +5 -5
  98. diffsky-0.3.4/scripts/ellipsoid_shape_fitting/README.txt +1 -0
  99. diffsky-0.3.4/scripts/ellipsoid_shape_fitting/fit_bulge_shapes_to_rp13.py +82 -0
  100. diffsky-0.3.4/scripts/ellipsoid_shape_fitting/fit_disk_shapes_to_rp13.py +78 -0
  101. diffsky-0.3.2/.github/workflows/test_new_diffstar.yaml +0 -90
  102. diffsky-0.3.2/diffsky/_version.py +0 -1
  103. diffsky-0.3.2/diffsky/data_loaders/__init__.py +0 -5
  104. diffsky-0.3.2/diffsky/data_loaders/hacc_utils/lc_mock_production.py +0 -709
  105. diffsky-0.3.2/diffsky/data_loaders/hacc_utils/load_lc_cf_synthetic.py +0 -86
  106. diffsky-0.3.2/diffsky/data_loaders/hacc_utils/metadata_sfh_mock.py +0 -354
  107. diffsky-0.3.2/diffsky/data_loaders/hacc_utils/tests/test_metadata_sfh_mock.py +0 -7
  108. diffsky-0.3.2/diffsky/diagnostics/plot_delta_mag_burstiness.py +0 -251
  109. diffsky-0.3.2/diffsky/diagnostics/tests/test_plot_delta_mag_burstiness.py +0 -13
  110. diffsky-0.3.2/diffsky/experimental/kernels/ssp_weight_kernels.py +0 -496
  111. diffsky-0.3.2/diffsky/experimental/lc_phot_kern.py +0 -505
  112. diffsky-0.3.2/diffsky/experimental/mc_diffsky_seds.py +0 -1010
  113. diffsky-0.3.2/diffsky/experimental/mc_phot.py +0 -274
  114. diffsky-0.3.2/diffsky/experimental/sfh_model_calibrations/load_diffsky_sfh_model_calibrations.py +0 -20
  115. diffsky-0.3.2/diffsky/experimental/sfh_model_calibrations/tests/test_load_diffsky_sfh_model_calibrations.py +0 -13
  116. diffsky-0.3.2/diffsky/experimental/tests/test_lc_phot_kern_repro.py +0 -201
  117. diffsky-0.3.2/diffsky/experimental/tests/test_mc_diffsky_seds.py +0 -278
  118. diffsky-0.3.2/diffsky/experimental/tests/test_mc_diffstarpop_wrappers.py +0 -60
  119. diffsky-0.3.2/diffsky/experimental/tests/test_mc_phot.py +0 -169
  120. diffsky-0.3.2/diffsky/experimental/tests/test_top_level_imports.py +0 -14
  121. diffsky-0.3.2/diffsky/sbl18_photgrad.py +0 -282
  122. diffsky-0.3.2/diffsky/ssp_err_model/ssp_err_model.py +0 -566
  123. diffsky-0.3.2/diffsky/ssp_err_model/tests/test_ssp_err_model.py +0 -211
  124. diffsky-0.3.2/diffsky/systematics/ssp_errors.py +0 -105
  125. diffsky-0.3.2/diffsky/systematics/tests/test_ssp_errors.py +0 -107
  126. diffsky-0.3.2/diffsky/tests/test_sbl18_photgrad.py +0 -31
  127. diffsky-0.3.2/diffsky/tests/test_tw_photgrad.py +0 -205
  128. diffsky-0.3.2/diffsky/tw_photgrad.py +0 -258
  129. diffsky-0.3.2/diffsky/utils/tests/__init__.py +0 -0
  130. diffsky-0.3.2/scripts/LJ_LC_MOCKS/make_ou26_mock.py +0 -437
  131. diffsky-0.3.2/scripts/__init__.py +0 -0
  132. diffsky-0.3.2/scripts/tests/__init__.py +0 -0
  133. {diffsky-0.3.2 → diffsky-0.3.4}/.coveragerc +0 -0
  134. {diffsky-0.3.2 → diffsky-0.3.4}/.git_archival.txt +0 -0
  135. {diffsky-0.3.2 → diffsky-0.3.4}/.gitattributes +0 -0
  136. {diffsky-0.3.2 → diffsky-0.3.4}/.github/dependabot.yml +0 -0
  137. {diffsky-0.3.2 → diffsky-0.3.4}/.github/workflows/linting.yaml +0 -0
  138. {diffsky-0.3.2 → diffsky-0.3.4}/.github/workflows/monthly-warning-test.yaml +0 -0
  139. {diffsky-0.3.2 → diffsky-0.3.4}/.github/workflows/test_latest_releases.yaml +0 -0
  140. {diffsky-0.3.2 → diffsky-0.3.4}/.readthedocs.yml +0 -0
  141. {diffsky-0.3.2 → diffsky-0.3.4}/LICENSE.rst +0 -0
  142. {diffsky-0.3.2 → diffsky-0.3.4}/README.rst +0 -0
  143. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/__init__.py +0 -0
  144. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/__init__.py +0 -0
  145. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diagnostics/__init__.py +0 -0
  146. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diagnostics/tests/__init__.py +0 -0
  147. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diffburstpop.py +0 -0
  148. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diffqburstpop.py +0 -0
  149. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diffqburstpop_mono.py +0 -0
  150. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/diffqburstpop_mono_noise.py +0 -0
  151. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/fburstpop.py +0 -0
  152. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/fburstpop_mono.py +0 -0
  153. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/freqburst.py +0 -0
  154. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/freqburst_mono.py +0 -0
  155. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tburstpop.py +0 -0
  156. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/__init__.py +0 -0
  157. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_diffburstpop.py +0 -0
  158. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_diffqburstpop.py +0 -0
  159. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_diffqburstpop_mono.py +0 -0
  160. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_diffqburstpop_mono_noise.py +0 -0
  161. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_fburstpop.py +0 -0
  162. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_fburstpop_mono.py +0 -0
  163. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_freqburst.py +0 -0
  164. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_freqburst_mono.py +0 -0
  165. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/burstpop/tests/test_tburstpop.py +0 -0
  166. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/cosmos_utils/__init__.py +0 -0
  167. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/cosmos_utils/cosmos_mstar_model.py +0 -0
  168. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/cosmos_utils/tests/__init__.py +0 -0
  169. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/cosmos_utils/tests/test_cosmos_mstar_model.py +0 -0
  170. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/__init__.py +0 -0
  171. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/DiscoveryLCDM/cosmo.txt +0 -0
  172. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/DiscoveryLCDM/cosmotools_steps.txt +0 -0
  173. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/DiscoveryLCDM/cosmotools_steps_a.txt +0 -0
  174. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/DiscoveryW0WA/cosmo.txt +0 -0
  175. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/DiscoveryW0WA/cosmotools_steps.txt +0 -0
  176. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/DiscoveryW0WA/cosmotools_steps_a.txt +0 -0
  177. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/LastJourney/cosmo.txt +0 -0
  178. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/LastJourney/cosmotools_steps.txt +0 -0
  179. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/LastJourney/cosmotools_steps_a.txt +0 -0
  180. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data/LastJourney/lc_cores-decomposition.txt +0 -0
  181. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data_validation/__init__.py +0 -0
  182. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data_validation/tests/__init__.py +0 -0
  183. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data_validation/tests/test_validate_lc_cores.py +0 -0
  184. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data_validation/tests/test_validate_lc_mock.py +0 -0
  185. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/data_validation/validate_lc_cores.py +0 -0
  186. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/defaults.py +0 -0
  187. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/hacc_core_utils.py +0 -0
  188. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/haccsims.py +0 -0
  189. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/load_hacc_cores.py +0 -0
  190. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/__init__.py +0 -0
  191. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/test_defaults.py +0 -0
  192. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/test_hacc_core_utils.py +0 -0
  193. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/test_haccsims.py +0 -0
  194. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/test_load_hacc_cores.py +0 -0
  195. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/test_load_lc_cf.py +0 -0
  196. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/test_load_lc_mock.py +0 -0
  197. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/testing_data/lc_cores-decomposition.txt +0 -0
  198. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/testing_data/phi_haccytrees_tdata.txt +0 -0
  199. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/testing_data/redshift_haccytrees_tdata.txt +0 -0
  200. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/testing_data/theta_haccytrees_tdata.txt +0 -0
  201. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/testing_data/x_haccytrees_tdata.txt +0 -0
  202. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/testing_data/y_haccytrees_tdata.txt +0 -0
  203. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/hacc_utils/tests/testing_data/z_haccytrees_tdata.txt +0 -0
  204. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/io_utils.py +0 -0
  205. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/mock_utils.py +0 -0
  206. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/mpi_utils.py +0 -0
  207. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/tests/__init__.py +0 -0
  208. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/tests/test_imports.py +0 -0
  209. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/tests/test_mock_utils.py +0 -0
  210. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/tests/test_mpi_utils.py +0 -0
  211. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/tests/testing_data/__init__.py +0 -0
  212. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/tests/testing_data/cosmos20_shasum.dat +0 -0
  213. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/data_loaders/um_binary_loader.py +0 -0
  214. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/diagnostics/__init__.py +0 -0
  215. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/diagnostics/tests/__init__.py +0 -0
  216. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/diagnostics/utils.py +0 -0
  217. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/diffndhist.py +0 -0
  218. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/__init__.py +0 -0
  219. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/avpop.py +0 -0
  220. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/avpop_flex.py +0 -0
  221. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/avpop_mono.py +0 -0
  222. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/deltapop.py +0 -0
  223. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/diagnostics/__init__.py +0 -0
  224. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/diagnostics/tests/__init__.py +0 -0
  225. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/funopop.py +0 -0
  226. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/funopop_simple.py +0 -0
  227. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/funopop_ssfr.py +0 -0
  228. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/sbl18_dust.py +0 -0
  229. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/sbl18_dust_kernels.py +0 -0
  230. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/sbl18_dustpop.py +0 -0
  231. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/__init__.py +0 -0
  232. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_avpop.py +0 -0
  233. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_avpop_flex.py +0 -0
  234. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_avpop_mono.py +0 -0
  235. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_deltapop.py +0 -0
  236. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_funopop_model.py +0 -0
  237. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_funopop_simple.py +0 -0
  238. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_funopop_ssfr.py +0 -0
  239. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_sbl18_dustpop.py +0 -0
  240. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_tw_dust_kernels.py +0 -0
  241. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_tw_dustpop.py +0 -0
  242. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_tw_dustpop_mono.py +0 -0
  243. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_tw_dustpop_mono_noise.py +0 -0
  244. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tests/test_tw_dustpop_new.py +0 -0
  245. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tw_dust.py +0 -0
  246. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tw_dust_kernels.py +0 -0
  247. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tw_dustpop.py +0 -0
  248. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tw_dustpop_mono.py +0 -0
  249. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tw_dustpop_mono_noise.py +0 -0
  250. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/dustpop/tw_dustpop_new.py +0 -0
  251. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/__init__.py +0 -0
  252. {diffsky-0.3.2/diffsky/ellipsoidal_shapes/tests → diffsky-0.3.4/diffsky/ellipsoidal_shapes/diagnostics}/__init__.py +0 -0
  253. {diffsky-0.3.2/diffsky/experimental/black_hole_modeling → diffsky-0.3.4/diffsky/ellipsoidal_shapes/diagnostics/tests}/__init__.py +0 -0
  254. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/pdf_model_utils.py +0 -0
  255. {diffsky-0.3.2/diffsky/experimental/black_hole_modeling → diffsky-0.3.4/diffsky/ellipsoidal_shapes}/tests/__init__.py +0 -0
  256. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/tests/test_bulge_opt.py +0 -0
  257. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/tests/test_bulge_shapes.py +0 -0
  258. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/tests/test_disk_opt.py +0 -0
  259. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/tests/test_disk_shapes.py +0 -0
  260. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/ellipsoidal_shapes/tests/test_pdf_model_utils.py +0 -0
  261. {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
  262. {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
  263. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/__init__.py +0 -0
  264. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/black_hole_modeling/README.txt +0 -0
  265. {diffsky-0.3.2/diffsky/experimental/diagnostics → diffsky-0.3.4/diffsky/experimental/black_hole_modeling}/__init__.py +0 -0
  266. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/black_hole_modeling/black_hole_accretion_rate.py +0 -0
  267. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/black_hole_modeling/black_hole_mass.py +0 -0
  268. {diffsky-0.3.2/diffsky/experimental/diagnostics → diffsky-0.3.4/diffsky/experimental/black_hole_modeling}/tests/__init__.py +0 -0
  269. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/black_hole_modeling/tests/test_black_hole_accretion_rate.py +0 -0
  270. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/black_hole_modeling/tests/test_black_hole_mass.py +0 -0
  271. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/black_hole_modeling/tests/test_utils.py +0 -0
  272. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/black_hole_modeling/utils.py +0 -0
  273. /diffsky-0.3.2/diffsky/experimental/dbk_from_mock2.py → /diffsky-0.3.4/diffsky/experimental/dbk_phot_from_mock.py +0 -0
  274. {diffsky-0.3.2/diffsky/experimental/disk_bulge_modeling → diffsky-0.3.4/diffsky/experimental/diagnostics}/__init__.py +0 -0
  275. {diffsky-0.3.2/diffsky/experimental/disk_bulge_modeling → diffsky-0.3.4/diffsky/experimental/diagnostics}/tests/__init__.py +0 -0
  276. {diffsky-0.3.2/diffsky/experimental/dspspop → diffsky-0.3.4/diffsky/experimental/disk_bulge_modeling}/__init__.py +0 -0
  277. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/disk_bulge_modeling/disk_bulge_kernels.py +0 -0
  278. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/disk_bulge_modeling/disk_knots.py +0 -0
  279. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/disk_bulge_modeling/generate_bulge_disk_sample.py +0 -0
  280. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/disk_bulge_modeling/mc_disk_bulge.py +0 -0
  281. {diffsky-0.3.2/diffsky/experimental/dspspop → diffsky-0.3.4/diffsky/experimental/disk_bulge_modeling}/tests/__init__.py +0 -0
  282. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/disk_bulge_modeling/tests/test_disk_bulge.py +0 -0
  283. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/disk_bulge_modeling/tests/test_disk_knots.py +0 -0
  284. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/disk_bulge_modeling/tests/test_generate_bulge_disk_sample.py +0 -0
  285. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/disk_bulge_modeling/tests/test_mc_disk_bulge.py +0 -0
  286. {diffsky-0.3.2/diffsky/experimental/kernels → diffsky-0.3.4/diffsky/experimental/dspspop}/__init__.py +0 -0
  287. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/boris_dust.py +0 -0
  288. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/burstshapepop.py +0 -0
  289. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/dust_deltapop.py +0 -0
  290. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/dustpop.py +0 -0
  291. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/lgavpop.py +0 -0
  292. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/lgfburstpop.py +0 -0
  293. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/nagaraj22_dust.py +0 -0
  294. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/photpop.py +0 -0
  295. {diffsky-0.3.2/diffsky/experimental/kernels → diffsky-0.3.4/diffsky/experimental/dspspop}/tests/__init__.py +0 -0
  296. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/tests/test_attavpop.py +0 -0
  297. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/tests/test_boris_dust.py +0 -0
  298. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/tests/test_burstshapepop.py +0 -0
  299. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/tests/test_dustdeltapop.py +0 -0
  300. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/tests/test_lgfburstpop.py +0 -0
  301. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/dspspop/tests/test_photpop.py +0 -0
  302. {diffsky-0.3.2/diffsky/experimental/sfh_model_calibrations → diffsky-0.3.4/diffsky/experimental/kernels}/__init__.py +0 -0
  303. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/kernels/dbk_kernels.py +0 -0
  304. {diffsky-0.3.2/diffsky/experimental/sfh_model_calibrations → diffsky-0.3.4/diffsky/experimental/kernels}/tests/__init__.py +0 -0
  305. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/mc_diffstarpop_wrappers.py +0 -0
  306. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/phot_utils.py +0 -0
  307. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/photometry_interpolation.py +0 -0
  308. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/precompute_ssp_phot.py +0 -0
  309. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/scatter.py +0 -0
  310. {diffsky-0.3.2/diffsky/experimental/size_modeling → diffsky-0.3.4/diffsky/experimental/sfh_model_calibrations}/__init__.py +0 -0
  311. {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
  312. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/sfh_model_calibrations/data/u_params_best_1015_smdpl_dr1.npy +0 -0
  313. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/sfh_model_calibrations/data/u_params_best_1015_tng.npy +0 -0
  314. {diffsky-0.3.2/diffsky/experimental/size_modeling → diffsky-0.3.4/diffsky/experimental/sfh_model_calibrations}/tests/__init__.py +0 -0
  315. {diffsky-0.3.2/diffsky/experimental/tests → diffsky-0.3.4/diffsky/experimental/size_modeling}/__init__.py +0 -0
  316. {diffsky-0.3.2/diffsky/fake_sats → diffsky-0.3.4/diffsky/experimental/size_modeling/tests}/__init__.py +0 -0
  317. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/size_modeling/tests/test_disk_bulge_sizes.py +0 -0
  318. {diffsky-0.3.2/diffsky/fake_sats → diffsky-0.3.4/diffsky/experimental}/tests/__init__.py +0 -0
  319. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/tests/test_photometry_interpolation.py +0 -0
  320. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/tests/test_precompute_ssp_phot.py +0 -0
  321. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/tests/test_scatter.py +0 -0
  322. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/experimental/tests/test_sobol_lightcone.py +0 -0
  323. {diffsky-0.3.2/diffsky/mass_functions/fitting_utils → diffsky-0.3.4/diffsky/fake_sats}/__init__.py +0 -0
  324. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/ellipsoidal_nfw_phase_space.py +0 -0
  325. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/ellipsoidal_velocities.py +0 -0
  326. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/halo_boundary_functions.py +0 -0
  327. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/nfw_config_space.py +0 -0
  328. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/rotations3d.py +0 -0
  329. {diffsky-0.3.2/diffsky/mass_functions/fitting_utils/calibrations → diffsky-0.3.4/diffsky/fake_sats/tests}/__init__.py +0 -0
  330. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/tests/test_ellipsoidal_nfw_phase_space.py +0 -0
  331. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/tests/test_halo_boundary_functions.py +0 -0
  332. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/tests/test_mc_ellipticial_velocities.py +0 -0
  333. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/tests/test_nfw_config_space.py +0 -0
  334. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/tests/test_rotations3d.py +0 -0
  335. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/tests/testing_data/halo_mass_ht_test.txt +0 -0
  336. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/tests/testing_data/halo_radius_200c_ht_test.txt +0 -0
  337. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/tests/testing_data/redshift_ht_test.txt +0 -0
  338. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/fake_sats/vector_utilities.py +0 -0
  339. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/__init__.py +0 -0
  340. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/ccshmf_model.py +0 -0
  341. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/README.rst +0 -0
  342. {diffsky-0.3.2/diffsky/mass_functions/fitting_utils/calibrations/tests → diffsky-0.3.4/diffsky/mass_functions/fitting_utils}/__init__.py +0 -0
  343. {diffsky-0.3.2/diffsky/mass_functions/fitting_utils/diagnostics → diffsky-0.3.4/diffsky/mass_functions/fitting_utils/calibrations}/__init__.py +0 -0
  344. {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
  345. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/calibrations/tests/test_hacc_core_shmf_params.py +0 -0
  346. {diffsky-0.3.2/diffsky/mass_functions/fitting_utils/tests → diffsky-0.3.4/diffsky/mass_functions/fitting_utils/diagnostics}/__init__.py +0 -0
  347. {diffsky-0.3.2/diffsky/mass_functions/hmf_calibrations → diffsky-0.3.4/diffsky/mass_functions/fitting_utils/diagnostics}/tests/__init__.py +0 -0
  348. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/fit_ccshmf.py +0 -0
  349. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/fit_ccshmf_kernels.py +0 -0
  350. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/fit_flat_hmf_model.py +0 -0
  351. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/fit_halobias_model.py +0 -0
  352. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/fit_halobias_singlez_model.py +0 -0
  353. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/fit_hmf_kernels.py +0 -0
  354. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/fit_hmf_model.py +0 -0
  355. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/fitting_helpers.py +0 -0
  356. {diffsky-0.3.2/diffsky/mass_functions/io_utils → diffsky-0.3.4/diffsky/mass_functions/fitting_utils/tests}/__init__.py +0 -0
  357. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/tests/test_fit_ccshmf.py +0 -0
  358. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/tests/test_fit_ccshmf_kernels.py +0 -0
  359. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/tests/test_fit_flat_hmf_model.py +0 -0
  360. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/tests/test_fit_halobias_model.py +0 -0
  361. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/tests/test_fit_halobias_model_singlez.py +0 -0
  362. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/tests/test_fit_hmf_kernels.py +0 -0
  363. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/fitting_utils/tests/test_fit_hmf_model.py +0 -0
  364. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/flat_hmf_model.py +0 -0
  365. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/halobias_model.py +0 -0
  366. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/halobias_singlez_model.py +0 -0
  367. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/__init__.py +0 -0
  368. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/disc_lcdm_hmf_params.txt +0 -0
  369. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/disc_lcdm_hmf_params_all.txt +0 -0
  370. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/hmf_param_reader.py +0 -0
  371. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/lj_hmf_params.txt +0 -0
  372. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/lj_hmf_params_all.txt +0 -0
  373. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/smdpl_hmf.py +0 -0
  374. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/smdpl_hmf_fitting_helpers.py +0 -0
  375. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/smdpl_hmf_subs.py +0 -0
  376. {diffsky-0.3.2/diffsky/mass_functions/kernels → diffsky-0.3.4/diffsky/mass_functions/hmf_calibrations/tests}/__init__.py +0 -0
  377. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/test_imports.py +0 -0
  378. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/test_lj_hmf.py +0 -0
  379. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/test_smdpl_hmf.py +0 -0
  380. {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
  381. {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
  382. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/disc_lcdm_hmf_logmp_bins.txt +0 -0
  383. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/disc_lcdm_hmf_redshift_bins.txt +0 -0
  384. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/lj_hmf_cuml_density_all.txt +0 -0
  385. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/lj_hmf_cuml_density_cens.txt +0 -0
  386. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/lj_hmf_logmp_bins.txt +0 -0
  387. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_calibrations/tests/testing_data/lj_hmf_redshift_bins.txt +0 -0
  388. {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
  389. {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
  390. {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
  391. {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
  392. {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
  393. {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
  394. {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
  395. {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
  396. {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
  397. {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
  398. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/hmf_model.py +0 -0
  399. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/io_utils/README.txt +0 -0
  400. {diffsky-0.3.2/diffsky/mass_functions/kernels/tests → diffsky-0.3.4/diffsky/mass_functions/io_utils}/__init__.py +0 -0
  401. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/io_utils/loader.py +0 -0
  402. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/io_utils/smdpl_helpers.py +0 -0
  403. {diffsky-0.3.2/diffsky/mass_functions/smhm_kernels → diffsky-0.3.4/diffsky/mass_functions/kernels}/__init__.py +0 -0
  404. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/kernels/ccshmf_kernels.py +0 -0
  405. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/kernels/hmf_kernels.py +0 -0
  406. {diffsky-0.3.2/diffsky/mass_functions/smhm_kernels → diffsky-0.3.4/diffsky/mass_functions/kernels}/tests/__init__.py +0 -0
  407. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/kernels/tests/test_ccshmf_kernels.py +0 -0
  408. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/kernels/tests/test_hmf_kernels.py +0 -0
  409. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/mc_diffmah_tpeak.py +0 -0
  410. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/mc_hosts.py +0 -0
  411. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/mc_subs.py +0 -0
  412. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/mc_tinfall.py +0 -0
  413. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/measure_ccshmf.py +0 -0
  414. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/measure_hmf.py +0 -0
  415. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/scripts/discovery_lcdm_calibration/measure_hmf_target_data_hacc.py +0 -0
  416. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/scripts/discovery_lcdm_calibration/run_hmf_tabulation_disc_lcdm.sh +0 -0
  417. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/scripts/last_journey_calibration/measure_hmf_target_data_hacc.py +0 -0
  418. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/scripts/smdpl_calibration/fit_smdpl_hmf_script.py +0 -0
  419. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/scripts/smdpl_calibration/measure_smdpl_hmf_script.py +0 -0
  420. {diffsky-0.3.2/diffsky/mass_functions/tests → diffsky-0.3.4/diffsky/mass_functions/smhm_kernels}/__init__.py +0 -0
  421. {diffsky-0.3.2/diffsky/mass_functions/tests/testing_data → diffsky-0.3.4/diffsky/mass_functions/smhm_kernels/tests}/__init__.py +0 -0
  422. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/smhm_kernels/tests/test_threeroll_smhm.py +0 -0
  423. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/smhm_kernels/threeroll_kernels.py +0 -0
  424. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/smhm_kernels/threeroll_smhm.py +0 -0
  425. {diffsky-0.3.2/diffsky/mass_functions/upweighting → diffsky-0.3.4/diffsky/mass_functions/tests}/__init__.py +0 -0
  426. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_ccshmf.py +0 -0
  427. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_flat_hmf_model.py +0 -0
  428. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_halobias_model.py +0 -0
  429. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_halobias_singlez_model.py +0 -0
  430. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_hmf_model.py +0 -0
  431. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_mc_diffmah_tpeak.py +0 -0
  432. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_mc_hosts.py +0 -0
  433. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_mc_subs.py +0 -0
  434. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_mc_tinfall.py +0 -0
  435. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/test_measure_hmf.py +0 -0
  436. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/tests/testing_data/README.txt +0 -0
  437. {diffsky-0.3.2/diffsky/mass_functions/upweighting/tests → diffsky-0.3.4/diffsky/mass_functions/tests/testing_data}/__init__.py +0 -0
  438. {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
  439. {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
  440. {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
  441. {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
  442. {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
  443. {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
  444. {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
  445. {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
  446. {diffsky-0.3.2/diffsky/merging → diffsky-0.3.4/diffsky/mass_functions/upweighting}/__init__.py +0 -0
  447. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/upweighting/namedtuple_cat_utils.py +0 -0
  448. {diffsky-0.3.2/diffsky/merging/diagnostics → diffsky-0.3.4/diffsky/mass_functions/upweighting/tests}/__init__.py +0 -0
  449. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/upweighting/tests/test_mc_gen_upweighting.py +0 -0
  450. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/upweighting/upweighting.py +0 -0
  451. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mass_functions/utils.py +0 -0
  452. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/mc_diffsky.py +0 -0
  453. {diffsky-0.3.2/diffsky/merging/diagnostics/tests → diffsky-0.3.4/diffsky/merging}/__init__.py +0 -0
  454. {diffsky-0.3.2/diffsky/merging/tests → diffsky-0.3.4/diffsky/merging/diagnostics}/__init__.py +0 -0
  455. {diffsky-0.3.2/diffsky/param_utils → diffsky-0.3.4/diffsky/merging/diagnostics/tests}/__init__.py +0 -0
  456. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/merging/fitmerge_multi_redshift.py +0 -0
  457. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/merging/merging_model.py +0 -0
  458. {diffsky-0.3.2/diffsky/param_utils → diffsky-0.3.4/diffsky/merging}/tests/__init__.py +0 -0
  459. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/merging/tests/test_fitmerge_multi_redshift.py +0 -0
  460. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/merging/tests/test_merging_model.py +0 -0
  461. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/param_utils/diffsky_param_wrapper.py +0 -0
  462. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/param_utils/spspop_param_utils.py +0 -0
  463. {diffsky-0.3.2/diffsky/ssp_err_model → diffsky-0.3.4/diffsky/param_utils/tests}/__init__.py +0 -0
  464. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/param_utils/tests/test_diffsky_param_wrapper.py +0 -0
  465. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/param_utils/tests/test_spspop_param_utils.py +0 -0
  466. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/phot_utils.py +0 -0
  467. {diffsky-0.3.2/diffsky/ssp_err_model/tests → diffsky-0.3.4/diffsky/ssp_err_model}/__init__.py +0 -0
  468. {diffsky-0.3.2/diffsky/ssp_err_model2 → diffsky-0.3.4/diffsky/ssp_err_model}/defaults.py +0 -0
  469. {diffsky-0.3.2/diffsky/ssp_err_model2 → diffsky-0.3.4/diffsky/ssp_err_model}/ssp_err_model.py +0 -0
  470. {diffsky-0.3.2/diffsky/ssp_err_model2 → diffsky-0.3.4/diffsky/ssp_err_model/tests}/__init__.py +0 -0
  471. {diffsky-0.3.2/diffsky/ssp_err_model2 → diffsky-0.3.4/diffsky/ssp_err_model}/tests/test_ssp_err_model.py +0 -0
  472. {diffsky-0.3.2/diffsky/ssp_err_model2/tests → diffsky-0.3.4/diffsky/sumstats}/__init__.py +0 -0
  473. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/sumstats/diffndhist.py +0 -0
  474. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/sumstats/smhm.py +0 -0
  475. {diffsky-0.3.2/diffsky/sumstats → diffsky-0.3.4/diffsky/sumstats/tests}/__init__.py +0 -0
  476. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/sumstats/tests/test_smhm.py +0 -0
  477. {diffsky-0.3.2/diffsky/sumstats → diffsky-0.3.4/diffsky}/tests/__init__.py +0 -0
  478. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/tests/test_dependencies.py +0 -0
  479. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/tests/test_diffndhist.py +0 -0
  480. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/tests/test_diffsky_setup.py +0 -0
  481. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/tests/test_imports.py +0 -0
  482. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/tests/test_mc_diffsky.py +0 -0
  483. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/tests/test_phot_utils.py +0 -0
  484. {diffsky-0.3.2/diffsky/systematics → diffsky-0.3.4/diffsky/tests/testing_data}/__init__.py +0 -0
  485. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/__init__.py +0 -0
  486. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/crossmatch_utils.py +0 -0
  487. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/sfh_utils.py +0 -0
  488. {diffsky-0.3.2/diffsky/systematics → diffsky-0.3.4/diffsky/utils}/tests/__init__.py +0 -0
  489. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/tests/test_crossmatch_utils.py +0 -0
  490. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/tests/test_sfh_utils.py +0 -0
  491. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/tests/test_tw_utils.py +0 -0
  492. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/tests/test_utility_funcs.py +0 -0
  493. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/tw_utils.py +0 -0
  494. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky/utils/utility_funcs.py +0 -0
  495. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky.egg-info/dependency_links.txt +0 -0
  496. {diffsky-0.3.2 → diffsky-0.3.4}/diffsky.egg-info/top_level.txt +0 -0
  497. {diffsky-0.3.2 → diffsky-0.3.4}/docs/Makefile +0 -0
  498. {diffsky-0.3.2 → diffsky-0.3.4}/docs/make.bat +0 -0
  499. {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/citation.rst +0 -0
  500. {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/demo_diffmahpop_lightcone.ipynb +0 -0
  501. {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/demo_diffmahpop_t_peak.ipynb +0 -0
  502. {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/demo_diffsky_recompute_from_mock.ipynb +0 -0
  503. {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/demos.rst +0 -0
  504. {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/index.rst +0 -0
  505. {diffsky-0.3.2 → diffsky-0.3.4}/docs/source/installation.rst +0 -0
  506. {diffsky-0.3.2 → diffsky-0.3.4}/pyproject.toml +0 -0
  507. {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_CROSSX/bebop_jobs.sh +0 -0
  508. {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_CROSSX/inspect_lc_crossx_data.py +0 -0
  509. {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_CROSSX/run_lc_cf_crossmatch_base.sh +0 -0
  510. {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_CROSSX/run_tabulate_coreforest_overlap.sh +0 -0
  511. {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_CROSSX/tabulate_coreforest_overlap.py +0 -0
  512. {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_LC_MOCKS/generate_sed_mock_jobs.py +0 -0
  513. {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_LC_MOCKS/generate_sfh_mock_jobs.py +0 -0
  514. {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_LC_MOCKS/inspect_sed_mock_job_logs.py +0 -0
  515. {diffsky-0.3.2 → diffsky-0.3.4}/scripts/LJ_SNAP_MOCKS/make_sfh_lj_snapshot_mock.py +0 -0
  516. {diffsky-0.3.2/diffsky/tests → diffsky-0.3.4/scripts}/__init__.py +0 -0
  517. {diffsky-0.3.2/diffsky/tests/testing_data → diffsky-0.3.4/scripts/tests}/__init__.py +0 -0
  518. {diffsky-0.3.2 → diffsky-0.3.4}/scripts/tests/test_inspect_lightcone_mock.py +0 -0
  519. {diffsky-0.3.2 → diffsky-0.3.4}/scripts/tests/test_tabulate_coreforest_overlap.py +0 -0
  520. {diffsky-0.3.2 → diffsky-0.3.4}/setup.cfg +0 -0
  521. {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.2_lgmet_age.h5
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: run mock generation script
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/make_ou26_mock.py \
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 "Mock generation script completed successfully"
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/synthetic_cores/smdpl_dr1
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
+
@@ -45,6 +45,7 @@ jobs:
45
45
  setuptools \
46
46
  "setuptools_scm>=7,<8" \
47
47
  matplotlib \
48
+ scipy \
48
49
  astropy \
49
50
  python-build
50
51
  pip uninstall diffmah --yes
@@ -50,6 +50,7 @@ jobs:
50
50
  "setuptools_scm>=7,<8" \
51
51
  matplotlib \
52
52
  astropy \
53
+ readme_renderer \
53
54
  python-build
54
55
  pip uninstall diffmah --yes
55
56
  pip uninstall diffstar --yes
@@ -12,6 +12,7 @@ scripts/*.cfg
12
12
  scripts/*.cfg~
13
13
 
14
14
  .DS_Store
15
+ **/.DS_Store
15
16
 
16
17
  docs/source/drn_dsps_temp/*
17
18
 
@@ -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.2
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
- from ..plot_fburstpop import DEFAULT_FBURSTPOP_PARAMS, make_fburstpop_comparison_plot
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 make_tburstpop_comparison_plot
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)
@@ -0,0 +1,6 @@
1
+ """"""
2
+
3
+ # flake8: noqa
4
+
5
+ from .io_utils import load_flat_hdf5
6
+ from .load_ssp_data import load_fake_ssp_data, load_ssp_templates
@@ -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
- return cat
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