IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 41816


Ignore:
Timestamp:
Sep 27, 2021, 11:10:10 AM (5 years ago)
Author:
eugene
Message:

fix typo on dXstdev

Location:
branches/eam_branches/ipp-dev-20210817/psastro/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-dev-20210817/psastro/src/psastroMosaicOneChip.c

    r41814 r41816  
    136136    // astStdev is the average 1D stdev of median residuals in arcsec ('results' are in FPA units = microns)
    137137    // the median residuals are calculated in a grid of N x N bins
    138     float astStdev = 0.5*(results->xStdev + results->yStdev) * plateScale;
     138    float astStdev = 0.5*(results->dXstdev + results->dYstdev) * plateScale;
    139139
    140140    // if we clip away too many stars, the order may be invalid
  • branches/eam_branches/ipp-dev-20210817/psastro/src/psastroOneChipFit.c

    r41814 r41816  
    194194    // astStdev is the average 1D stdev of median residuals in arcsec ('results' are in FPA units = microns)
    195195    // the median residuals are calculated in a grid of N x N bins
    196     float astStdev = 0.5*(results->xStdev + results->yStdev) * plateScale;
     196    float astStdev = 0.5*(results->dXstdev + results->dYstdev) * plateScale;
    197197
    198198    // x and y are forced to use the same subset of values:
Note: See TracChangeset for help on using the changeset viewer.