Skip to content

Commit

Permalink
Fix window function grid
Browse files Browse the repository at this point in the history
  • Loading branch information
andreicuceu committed May 20, 2024
1 parent 4232dd0 commit 6834479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vega/p3d_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __init__(self, config, pk_coordinates, window_path):
self.legendre_xi[ell] = special.legendre(ell)

self.window_rfunc = np.vectorize(self.scalar_window_rfunc)
self.window_r = self.window_rfunc(self.r_regular_grid / r_max_window)
self.window_r = self.window_rfunc(self.r_window_grid / r_max_window)

# TODO add more options here
self.sph_kernels = self.compute_sph_kernels(
Expand Down

0 comments on commit 6834479

Please sign in to comment.