classy-szfast 0.0.25.post15__tar.gz → 0.0.25.post17__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.
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/PKG-INFO +1 -1
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/classy_sz.py +16 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast.egg-info/PKG-INFO +1 -1
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/pyproject.toml +1 -1
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/README.md +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/__init__.py +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/classy_szfast.py +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/config.py +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/cosmopower.py +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/cosmopower_jax.py +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/cosmosis_classy_szfast_interface.py +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/custom_bias/__init__.py +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/custom_bias/custom_bias.py +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/custom_profiles/__init__.py +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/custom_profiles/custom_profiles.py +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/emulators_meta_data.py +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/pks_and_sigmas.py +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/restore_nn.py +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/suppress_warnings.py +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/utils.py +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast.egg-info/SOURCES.txt +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast.egg-info/dependency_links.txt +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast.egg-info/requires.txt +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast.egg-info/top_level.txt +0 -0
- {classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/setup.cfg +0 -0
@@ -254,6 +254,17 @@ class classy_sz(classy):
|
|
254
254
|
method="cl_galn_IA", # name of the method in classy.pyx
|
255
255
|
args_names=[],
|
256
256
|
args=[])
|
257
|
+
|
258
|
+
## added lensing fwith limber integral
|
259
|
+
if "cl_lens_lens" in requirements:
|
260
|
+
# make sure cobaya still runs as it does for standard classy
|
261
|
+
requirements.pop("cl_lens_lens")
|
262
|
+
# specify the method to collect the new observable
|
263
|
+
self.collectors["cl_lens_lens"] = Collector(
|
264
|
+
method="cl_kk", # name of the method in classy.pyx
|
265
|
+
args_names=[],
|
266
|
+
args=[])
|
267
|
+
|
257
268
|
super().must_provide(**requirements)
|
258
269
|
|
259
270
|
|
@@ -390,6 +401,11 @@ class classy_sz(classy):
|
|
390
401
|
cls = deepcopy(self._current_state["cl_cib_kappa"])
|
391
402
|
return cls
|
392
403
|
|
404
|
+
def get_cl_lens_lens(self):
|
405
|
+
cls = {}
|
406
|
+
cls = deepcopy(self._current_state["cl_lens_lens"])
|
407
|
+
return cls
|
408
|
+
|
393
409
|
# IMPORTANT: this method is imported from cobaya and modified to accomodate the emulators
|
394
410
|
def calculate(self, state, want_derived=True, **params_values_dict):
|
395
411
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/custom_bias/__init__.py
RENAMED
File without changes
|
{classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/custom_bias/custom_bias.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/emulators_meta_data.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast/suppress_warnings.py
RENAMED
File without changes
|
File without changes
|
{classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
{classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast.egg-info/requires.txt
RENAMED
File without changes
|
{classy_szfast-0.0.25.post15 → classy_szfast-0.0.25.post17}/classy_szfast.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|