Skip to content

Commit

Permalink
fix lmax_boltzmann and lmax_fg values (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgiardie authored Sep 29, 2023
1 parent cf1bb9f commit d293248
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit d293248

Please sign in to comment.