-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inconsistent use of cosmo in HMCalculator, MassFunc, HaloBias #884
Comments
This will break API so although it's an easy fix, I think it needs to be tagged for v3. |
UPDATE Suppose we completely get rid of Then, if we call There are two solutions to this issue:
Both of these point to putting Any thoughts are welcome. (tagging @damonge because you were reluctant to put |
So what I propose is, in addition to the |
UPDATE
Later, when any of the
Apart from (1) and (6), all others will give inconsistent results when called with a different In the end, the actual calculation isn't affected significantly, but it would be nice to have a consistent way of dealing with different cosmological parameters. |
I'd much rather remove cosmo as an argument when initializing the mass functions and halo biases than clutter cosmology objects with anything halo-model related. This is definitely doable for all the mass functions and biases we have implemented. |
Yes, exactly, I was about to open a PR. I've already done that for the mass functions and the halo biases. |
A
Cosmology
object is needed to initialize an instance of theHMCalculator
. This is used to calculaterho0
and store it as a class attribute. Later on,cosmo
is required when calling any of theHMCalculator
methods.If users initialize
hmc
with one cosmology, and then call it with a different cosmology CCL will yield inconsistent results without any errors.A solution is to remove
cosmo
from a required argument ofHMCalculator.__init__
, and allow it to be instantiated without settingrho0
as an attribute. This quantity can be calculated on the fly whenever_get_ingredients
is called (which is the only case whererho0
is used).ref code
The text was updated successfully, but these errors were encountered: