Changeset 10803
- Timestamp:
- Dec 17, 2006, 10:10:36 AM (20 years ago)
- Location:
- trunk/psphot/src
- Files:
-
- 7 edited
-
psphotApResid.c (modified) (2 diffs)
-
psphotBasicDeblend.c (modified) (1 diff)
-
psphotFindPeaks.c (modified) (1 diff)
-
psphotGuessModels.c (modified) (1 diff)
-
psphotParseCamera.c (modified) (1 diff)
-
psphotReplaceUnfit.c (modified) (1 diff)
-
psphotRoughClass.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot/src/psphotApResid.c
r10801 r10803 116 116 } 117 117 psLogMsg ("psphot.apresid", PS_LOG_DETAIL, "measure aperture residuals for %d objects (%d skipped, %d failed, %ld invalid)\n", 118 psTimerMark ("psphot"),Npsf, Nskip, Nfail, sources->n - Npsf - Nskip - Nfail);118 Npsf, Nskip, Nfail, sources->n - Npsf - Nskip - Nfail); 119 119 120 120 fclose (f); … … 333 333 psMetadataAdd (recipe, PS_LIST_TAIL, "NAPMIFIT", PS_DATA_S32 | PS_META_REPLACE, "ap residual scatter", psf->nApResid); 334 334 335 psLogMsg ("psphot.apresid", PS_LOG_INFO, "measure full-frame aperture residual: %f sec\n", psTimerMark ("psphot")); 336 psLogMsg ("psphot.apresid", PS_LOG_DETAIL, "aperture residual: %f +/- %f : %f bias, %f skysat (%d of %d used)\n", 337 psf->ApResid, psf->dApResid, psf->skyBias, psf->skySat, Nkeep, Npsf); 335 psLogMsg ("psphot.apresid", PS_LOG_INFO, "measure full-frame aperture residuals for %d of %d objects: %f sec\n", 336 psTimerMark ("psphot"), Nkeep, Npsf); 337 psLogMsg ("psphot.apresid", PS_LOG_DETAIL, "aperture residual: %f +/- %f : %f bias, %f skysat\n", 338 psf->ApResid, psf->dApResid, psf->skyBias, psf->skySat); 338 339 psLogMsg ("psphot.apresid", PS_LOG_MINUTIA, "apresid trends: %f %f %f %f %f\n", 339 340 1e3*psf->ApTrend->coeff[1][0][0][0], -
trunk/psphot/src/psphotBasicDeblend.c
r10801 r10803 120 120 psFree (contour); 121 121 } 122 psLogMsg ("psphot.deblend", PS_LOG_INFO, "identified %d blended objects (%f sec)\n", Nblend, psTimerMark ("psphot"));122 psLogMsg ("psphot.deblend", PS_LOG_INFO, "identified %d blended objects: %f sec\n", Nblend, psTimerMark ("psphot")); 123 123 124 124 psFree (SN); -
trunk/psphot/src/psphotFindPeaks.c
r10801 r10803 46 46 } 47 47 } 48 psLogMsg ("psphot", PS_LOG_ MINUTIA, "built S/N map: %f sec\n", psTimerMark ("psphot"));48 psLogMsg ("psphot", PS_LOG_INFO, "built smoothed image: %f sec\n", psTimerMark ("psphot")); 49 49 50 psTimerStart ("psphot"); 50 51 // set peak threshold 51 52 NSIGMA = psMetadataLookupF32 (&status, recipe, "PEAKS_NSIGMA_LIMIT"); -
trunk/psphot/src/psphotGuessModels.c
r10801 r10803 37 37 source->modelPSF = modelPSF; 38 38 } 39 psLogMsg ("psphot.models", 4, "built models : %f (%ld objects)\n", psTimerMark ("psphot"), sources->n);39 psLogMsg ("psphot.models", 4, "built models for %ld objects: %f sec\n", sources->n, psTimerMark ("psphot")); 40 40 return true; 41 41 } -
trunk/psphot/src/psphotParseCamera.c
r10792 r10803 105 105 for (int i = 0; i < chips->n; i++) { 106 106 int chipNum = atoi(chips->data[i]); 107 fprintf (stderr, "select chip %d\n", chipNum);108 107 if (! pmFPASelectChip(input->fpa, chipNum, false)) { 109 108 psError(PS_ERR_IO, false, "Chip number %d doesn't exist in camera.\n", chipNum); -
trunk/psphot/src/psphotReplaceUnfit.c
r10801 r10803 50 50 source->mode &= ~PM_SOURCE_MODE_SUBTRACTED; 51 51 } 52 psLogMsg ("psphot.replace", PS_LOG_INFO, "replace models : %f sec (%ld objects)\n", psTimerMark ("psphot"), sources->n);52 psLogMsg ("psphot.replace", PS_LOG_INFO, "replace models for %ld objects: %f sec\n", sources->n, psTimerMark ("psphot")); 53 53 return true; 54 54 } -
trunk/psphot/src/psphotRoughClass.c
r10801 r10803 24 24 psphotDumpMoments (recipe, sources); 25 25 26 psLogMsg ("psphot.roughclass", PS_LOG_INFO, "rough classification (%f sec)\n", psTimerMark ("psphot"));26 psLogMsg ("psphot.roughclass", PS_LOG_INFO, "rough classification: %f sec\n", psTimerMark ("psphot")); 27 27 28 28 return true;
Note:
See TracChangeset
for help on using the changeset viewer.
