Skip to content

Commit

Permalink
Corrected bug
Browse files Browse the repository at this point in the history
  • Loading branch information
achiefa committed May 30, 2024
1 parent daebfdc commit d0a4b3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions validphys2/src/validphys/theorycovariance/construction.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,8 +454,8 @@ def wrapper_to_splines(i):
shifted_H2_list[i] = 0
shifted_HL_list[i] = 0

H_2 = scint.CubicSpline(x_abmp, H2_list)
H_L = scint.CubicSpline(x_abmp, HL_list)
H_2 = scint.CubicSpline(x_abmp, shifted_H2_list)
H_L = scint.CubicSpline(x_abmp, shifted_HL_list)
H_2 = np.vectorize(H_2)
H_L = np.vectorize(H_L)
return H_2, H_L
Expand Down

0 comments on commit d0a4b3f

Please sign in to comment.