Skip to content

Commit

Permalink
Calculate seeing using determinant
Browse files Browse the repository at this point in the history
Use determinant radius consistently and remove any use of trace radius.
  • Loading branch information
arunkannawadi committed Aug 16, 2021
1 parent 774666e commit 728f542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/meas/extensions/gaap/_gaap.py
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ def _gaussianizeAndMeasure(self, measRecord: lsst.afw.table.SourceRecord,
raise measBase.FatalAlgorithmError("No PSF in exposure")
wcs = exposure.getWcs()

seeing = psf.computeShape(center).getTraceRadius()
seeing = psf.computeShape(center).getDeterminantRadius()
errorCollection = dict()
for scalingFactor in self.config.scalingFactors:
targetSigma = scalingFactor*seeing
Expand Down

0 comments on commit 728f542

Please sign in to comment.