Changeset 13007
- Timestamp:
- Apr 24, 2007, 1:44:35 PM (19 years ago)
- Location:
- trunk/psphot/src
- Files:
-
- 2 added
- 2 edited
-
Makefile.am (modified) (2 diffs)
-
pmFootprint.c (added)
-
pmFootprint.h (added)
-
psphot.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot/src/Makefile.am
r12950 r13007 18 18 libpsphot_la_SOURCES = \ 19 19 psphotErrorCodes.c \ 20 pmFootprint.c \ 20 21 psphotVersion.c \ 21 22 psphotModelGroupInit.c \ … … 62 63 include_HEADERS = \ 63 64 psphot.h \ 65 pmFootprint.h \ 64 66 psphotErrorCodes.h 65 67 -
trunk/psphot/src/psphot.h
r12950 r13007 30 30 // psphotReadout functions 31 31 bool psphotImageMedian (pmConfig *config, pmFPAview *view); 32 psArray *psphotFindPeaks (pmReadout *readout, psMetadata *recipe, int pass); 32 psArray *psphotFindPeaks (pmReadout *readout, psMetadata *recipe, 33 const bool returnFootprints, const int pass); 34 #include "pmFootprint.h" 35 psErrorCode psphotCullPeaks(const pmReadout *readout, const psMetadata *recipe, psArray *footprints); 33 36 psArray *psphotSourceStats (pmReadout *readout, psMetadata *recipe, psArray *allpeaks); 34 37 bool psphotRoughClass (psArray *sources, psMetadata *recipe); … … 48 51 // basic support functions 49 52 void psphotModelGroupInit (void); 50 int psphotSortBySN (const void **a, const void **b); 51 int psphotSortByY (const void **a, const void **b); 53 int pmPeakSortBySN (const void **a, const void **b); 54 int pmPeakSortByY (const void **a, const void **b); 55 int pmSourceSortBySN (const void **a, const void **b); 56 int pmSourceSortByY (const void **a, const void **b); 52 57 bool psphotGrowthCurve (pmReadout *readout, pmPSF *psf, bool ignore); 53 58 bool psphotMaskReadout (pmReadout *readout, psMetadata *recipe); … … 68 73 int psphotSaveImage (psMetadata *header, psImage *image, char *filename); 69 74 bool psphotDumpConfig (pmConfig *config); 70 pmReadout *psphotSelectBackground (pmConfig *config, pmFPAview *view );75 pmReadout *psphotSelectBackground (pmConfig *config, pmFPAview *view, const bool stdev); 71 76 72 77 // PSF / DBL / EXT evaluation functions
Note:
See TracChangeset
for help on using the changeset viewer.
