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

DM-32649: Add psf size and shape residual statistics. #617

Merged
merged 1 commit into from
Nov 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 16 additions & 0 deletions python/lsst/afw/image/_exposureSummaryStats.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,22 @@ class ExposureSummaryStats(Storable):
astromOffsetMean: float = float('nan')
# Astrometry match offset stddev
astromOffsetStd: float = float('nan')
# Number of stars used for psf model
nPsfStar: int = 0
# Psf stars median E1 residual (starE1 - psfE1)
psfStarDeltaE1Median: float = float('nan')
# Psf stars median E2 residual (starE2 - psfE2)
psfStarDeltaE2Median: float = float('nan')
# Psf stars MAD E1 scatter (starE1 - psfE1)
psfStarDeltaE1Scatter: float = float('nan')
# Psf stars MAD E2 scatter (starE2 - psfE2)
psfStarDeltaE2Scatter: float = float('nan')
# Psf stars median size residual (starSize - psfSize)
psfStarDeltaSizeMedian: float = float('nan')
# Psf stars MAD size scatter (starSize - psfSize)
psfStarDeltaSizeScatter: float = float('nan')
# Psf stars MAD size scatter scaled by psfSize**2
psfStarScaledDeltaSizeScatter: float = float('nan')

def __post_init__(self):
Storable.__init__(self)
Expand Down