Changeset 20582
- Timestamp:
- Nov 7, 2008, 3:52:34 PM (18 years ago)
- Location:
- trunk/psModules/src
- Files:
-
- 2 added
- 3 edited
-
objects/Makefile.am (modified) (2 diffs)
-
objects/pmPSFtry.c (modified) (8 diffs)
-
objects/pmSourceVisual.c (added)
-
objects/pmSourceVisual.h (added)
-
psmodules.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/objects/Makefile.am
r20076 r20582 39 39 pmSourcePlotMoments.c \ 40 40 pmSourcePlotApResid.c \ 41 pmSourceVisual.c \ 41 42 pmResiduals.c \ 42 43 pmPSF.c \ … … 74 75 pmSourceIO.h \ 75 76 pmSourcePlots.h \ 77 pmSourceVisual.h \ 76 78 pmResiduals.h \ 77 79 pmPSF.h \ -
trunk/psModules/src/objects/pmPSFtry.c
r20453 r20582 5 5 * @author EAM, IfA 6 6 * 7 * @version $Revision: 1.6 5$ $Name: not supported by cvs2svn $8 * @date $Date: 2008-1 0-29 01:04:27$7 * @version $Revision: 1.66 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2008-11-08 01:52:34 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 34 34 #include "pmSourceFitModel.h" 35 35 #include "pmSourcePhotometry.h" 36 #include "pmSourceVisual.h" 36 37 37 38 bool printTrendMap (pmTrend2D *trend) { … … 683 684 stdev = psStatsGetValue (trend->stats, stdevOption); 684 685 psTrace ("psModules.objects", 4, "clipped E0 : %f +/- %f keeping %ld of %ld\n", mean, stdev, psf->psfTrendStats->clippedNvalues, e0->n); 686 pmSourceVisualPSFModelResid (trend, x, y, e0, srcMask); 685 687 686 688 trend = psf->params->data[PM_PAR_E1]; … … 689 691 stdev = psStatsGetValue (trend->stats, stdevOption); 690 692 psTrace ("psModules.objects", 4, "clipped E1 : %f +/- %f keeping %ld of %ld\n", mean, stdev, psf->psfTrendStats->clippedNvalues, e1->n); 693 pmSourceVisualPSFModelResid (trend, x, y, e1, srcMask); 691 694 692 695 trend = psf->params->data[PM_PAR_E2]; … … 695 698 stdev = psStatsGetValue (trend->stats, stdevOption); 696 699 psTrace ("psModules.objects", 4, "clipped E2 : %f +/- %f keeping %ld of %ld\n", mean, stdev, psf->psfTrendStats->clippedNvalues, e2->n); 700 pmSourceVisualPSFModelResid (trend, x, y, e2, srcMask); 697 701 698 702 if (!status) { … … 853 857 psImageMapCleanup (trend->map); 854 858 // printTrendMap (trend); 859 pmSourceVisualPSFModelResid (trend, x, y, e0obs, mask); 855 860 856 861 trend = psf->params->data[PM_PAR_E1]; … … 862 867 psImageMapCleanup (trend->map); 863 868 // printTrendMap (trend); 869 pmSourceVisualPSFModelResid (trend, x, y, e1obs, mask); 864 870 865 871 trend = psf->params->data[PM_PAR_E2]; … … 871 877 psImageMapCleanup (trend->map); 872 878 // printTrendMap (trend); 879 pmSourceVisualPSFModelResid (trend, x, y, e2obs, mask); 873 880 } 874 881 psf->psfTrendStats->clipIter = nIter; // restore default setting -
trunk/psModules/src/psmodules.h
r20049 r20582 121 121 #include <pmModelUtils.h> 122 122 #include <pmSourcePhotometry.h> 123 #include <pmSourceVisual.h> 123 124 124 125 // The following headers are from random locations, here because they cross bounds
Note:
See TracChangeset
for help on using the changeset viewer.
