IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 10053


Ignore:
Timestamp:
Nov 17, 2006, 1:04:25 PM (20 years ago)
Author:
eugene
Message:

cleaned up some comments, added psphotGuessModels

Location:
trunk/psphot
Files:
1 added
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/psphot/src/Makefile.am

    r9887 r10053  
    3434        psphotBasicDeblend.c    \
    3535        psphotChoosePSF.c       \
     36        psphotGuessModels.c     \
    3637        psphotEnsemblePSF.c     \
    3738        psphotBlendFit.c        \
  • trunk/psphot/src/psphot.h

    r9807 r10053  
    4040bool            psphotMomentsStats (pmReadout *readout, psMetadata *recipe, psArray *sources);
    4141bool            psphotEnsemblePSF (pmReadout *readout, psArray *sources, psMetadata *recipe, pmPSF *psf, bool final);
     42bool            psphotGuessModels (pmReadout *readout, psArray *sources, psMetadata *recipe, pmPSF *psf);
    4243bool            psphotBlendFit (pmReadout *readout, psArray *sources, psMetadata *recipe, pmPSF *psf);
    4344bool            psphotReplaceUnfit (psArray *sources);
  • trunk/psphot/src/psphotMaskReadout.c

    r9270 r10053  
    11# include "psphot.h"
    22
    3 // 2006.02.04 : no leaks
    43bool psphotMaskReadout (pmReadout *readout, psMetadata *recipe) {
    54   
     
    1615    psRegion valid = psRegionSet (XMIN, XMAX, YMIN, YMAX);
    1716
    18     // psRegionForImage creates a region for the subimage, not the parent
    19     // XXX I propose that psRegionForImage treat the region as referring to the parent...
     17    // restrict the supplied region above to the valid area on the image
    2018    psRegion keep = psRegionForImage (readout->image, valid);
    2119
  • trunk/psphot/src/psphotRadiusChecks.c

    r9836 r10053  
    1818}
    1919
     20// call this function whenever you (re)-define the PSF model
    2021bool psphotCheckRadiusPSF (pmReadout *readout, pmSource *source, pmModel *model) {
    2122
     
    6869}
    6970
     71// call this function whenever you (re)-define the EXT model
    7072bool psphotCheckRadiusEXT (pmReadout *readout, pmSource *source, pmModel *model) {
    7173
  • trunk/psphot/src/psphotRoughClass.c

    r9270 r10053  
    2424    return true;
    2525}
     26
  • trunk/psphot/src/psphotSourceStats.c

    r9734 r10053  
    11# include "psphot.h"
    22
    3 // 2006.02.02 : no leaks
    43psArray *psphotSourceStats (pmReadout *readout, psMetadata *recipe, psArray *peaks)
    54{
Note: See TracChangeset for help on using the changeset viewer.