Skip to content
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

fix lmax_boltzmann and lmax_fg values in theoryforge #146

Merged
merged 2 commits into from
Sep 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions soliket/mflike/theoryforge_MFLike.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ def initialize(self):
# State requisites to the theory code
# Which lmax for theory CMB
# Note this must be greater than lmax above to avoid approx errors
self.lmax_boltzmann = 9000
self.lmax_boltzmann = self.lmax + 500

# Which lmax for theory FG
# This can be larger than lmax boltzmann
self.lmax_fg = 9000
self.lmax_fg = self.lmax + 500

# Which spectra to consider
self.requested_cls = self.spectra["polarizations"]
Expand Down
Loading