-
Notifications
You must be signed in to change notification settings - Fork 1
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
NaMaster wrapper #21
NaMaster wrapper #21
Conversation
tjpcov/main.py
Outdated
""" | ||
Compute all the covariances and then combine them into one single giant matrix | ||
Parameters: | ||
----------- | ||
two_point_data (sacc obj): sacc object containg two_point data | ||
**kwards: The arguments to pass to your chosen covariance estimation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is typically called kwargs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right. Changed
tjpcov/main.py
Outdated
@@ -486,23 +650,28 @@ def cl_gaussian_cov(self, tracer_comb1=None, tracer_comb2=None, | |||
# cov[1423]=None #if want to save memory | |||
return cov | |||
|
|||
def get_all_cov(self, do_xi=False): | |||
def get_all_cov(self, do_xi=False, use_nmt=False, **kwards): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
kwards
-> kwargs
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed
add healpy to requirements for namaster implementation
Work in progress on one of the codes of #3.
Closes #16
Note: Same as #11 but from a local branch. Now that I've got permissions I will push commits to this PR and close #11.