Skip to content

Commit

Permalink
Update calibration convention for A_planck
Browse files Browse the repository at this point in the history
  • Loading branch information
mtristram committed Aug 18, 2023
1 parent eb60a6d commit de2baac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion planck_2020_hillipop/hillipop.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def _compute_residuals(self, pars, dlth, mode):
cal1, cal2 = pars[f"cal{m1}"], pars[f"cal{m2}"]*pars[f"pe{m2}"]
elif mode == "ET":
cal1, cal2 = pars[f"cal{m1}"]*pars[f"pe{m1}"], pars[f"cal{m2}"]
cal.append(pars["A_planck"] ** 2 * cal1 * cal2)
cal.append(cal1 * cal2 / pars["A_planck"] ** 2)

# Data
dldata = self._dldata[mode]
Expand Down

0 comments on commit de2baac

Please sign in to comment.