Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix for PSpecData.pspec to pass the little_h option when calculating … #196

Merged
merged 1 commit into from
Apr 10, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions hera_pspec/pspecdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -2114,10 +2114,10 @@ def pspec(self, bls1, bls2, dsets, pols, n_dlys=None,
# If using decorrelation, the H^-1 normalization
# already deals with the taper, so we need to override
# the taper when computing the scalar
scalar = self.scalar(p, little_h=True,
scalar = self.scalar(p, little_h=little_h,
taper_override='none')
else:
scalar = self.scalar(p, little_h=True)
scalar = self.scalar(p, little_h=little_h)
else:
raise_warning("Warning: self.primary_beam is not defined, "
"so pspectra are not properly normalized",
Expand Down