Skip to content

Commit

Permalink
fix API-breaking change in ducc0 (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
damonge authored Oct 29, 2024
1 parent b26525b commit d18f767
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pymaster/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,8 @@ def _map2alm_healpy(map, spin, sht_info, alm_info):
def _catalog2alm_ducc0(values, positions, spin, lmax):
values = np.atleast_2d(values)
alm = ducc0.sht.adjoint_synthesis_general(lmax=lmax, map=values,
loc=positions.T, spin=int(spin))
loc=positions.T, spin=int(spin),
epsilon=1E-5)
return alm


Expand Down

0 comments on commit d18f767

Please sign in to comment.