Skip to content

Commit

Permalink
Merge pull request #319 from hpc4cmb/conviqt_typo
Browse files Browse the repository at this point in the history
Fix typo in conviqt.py calibrate --> _calibrate.
  • Loading branch information
tskisner authored Jan 14, 2020
2 parents 97fcf67 + d959848 commit 8cbad1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/toast/todmap/conviqt.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class OpSimConviqt(Operator):
maximum expansion order from file.
beammmax (int) : beam maximum m. Actual resolution in the
Healpix FITS file may differ. If not set, will use the
maximum expansion order from file.
maximum expansion order from file.
pol (bool) : boolean to determine if polarized simulation is needed
fwhm (float) : width of a symmetric gaussian beam [in arcmin] already
present in the skyfile (will be deconvolved away).
Expand Down Expand Up @@ -339,7 +339,7 @@ def calibrate(self, data, det, beam, convolved_data, verbose):
When calibrate = True, we rescale the TOD to
TOD = intensity + (1 - epsilon) / (1 + epsilon) * polarization
"""
if not self.calibrate or beam.normalized():
if not self._calibrate or beam.normalized():
return
timer = Timer()
timer.start()
Expand Down

0 comments on commit 8cbad1c

Please sign in to comment.