IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 13007


Ignore:
Timestamp:
Apr 24, 2007, 1:44:35 PM (19 years ago)
Author:
rhl
Message:

Support for pmFootprint

Location:
trunk/psphot/src
Files:
2 added
2 edited

Legend:

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

    r12950 r13007  
    1818libpsphot_la_SOURCES = \
    1919        psphotErrorCodes.c      \
     20        pmFootprint.c           \
    2021        psphotVersion.c         \
    2122        psphotModelGroupInit.c  \
     
    6263include_HEADERS = \
    6364        psphot.h \
     65        pmFootprint.h \
    6466        psphotErrorCodes.h
    6567
  • trunk/psphot/src/psphot.h

    r12950 r13007  
    3030// psphotReadout functions
    3131bool            psphotImageMedian (pmConfig *config, pmFPAview *view);
    32 psArray        *psphotFindPeaks (pmReadout *readout, psMetadata *recipe, int pass);
     32psArray        *psphotFindPeaks (pmReadout *readout, psMetadata *recipe,
     33                                 const bool returnFootprints, const int pass);
     34#include "pmFootprint.h"
     35psErrorCode     psphotCullPeaks(const pmReadout *readout, const psMetadata *recipe, psArray *footprints);
    3336psArray        *psphotSourceStats (pmReadout *readout, psMetadata *recipe, psArray *allpeaks);
    3437bool            psphotRoughClass (psArray *sources, psMetadata *recipe);
     
    4851// basic support functions
    4952void            psphotModelGroupInit (void);
    50 int             psphotSortBySN (const void **a, const void **b);
    51 int             psphotSortByY (const void **a, const void **b);
     53int             pmPeakSortBySN (const void **a, const void **b);
     54int             pmPeakSortByY (const void **a, const void **b);
     55int             pmSourceSortBySN (const void **a, const void **b);
     56int             pmSourceSortByY (const void **a, const void **b);
    5257bool            psphotGrowthCurve (pmReadout *readout, pmPSF *psf, bool ignore);
    5358bool            psphotMaskReadout (pmReadout *readout, psMetadata *recipe);
     
    6873int             psphotSaveImage (psMetadata *header, psImage *image, char *filename);
    6974bool            psphotDumpConfig (pmConfig *config);
    70 pmReadout      *psphotSelectBackground (pmConfig *config, pmFPAview *view);
     75pmReadout      *psphotSelectBackground (pmConfig *config, pmFPAview *view, const bool stdev);
    7176
    7277// PSF / DBL / EXT evaluation functions
Note: See TracChangeset for help on using the changeset viewer.