- Timestamp:
- Dec 20, 2010, 2:30:45 PM (16 years ago)
- Location:
- branches/czw_branch/20101203
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
psphot (modified) (1 prop)
-
psphot/src/psphotMakeFluxScale.c (modified) (1 diff, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/czw_branch/20101203
- Property svn:mergeinfo changed
-
branches/czw_branch/20101203/psphot
- Property svn:mergeinfo changed
/branches/eam_branches/ipp-20101103/psphot (added) merged: 29660,29824-29825,29904,29914,29918,29920
- Property svn:mergeinfo changed
-
branches/czw_branch/20101203/psphot/src/psphotMakeFluxScale.c
- Property svn:mergeinfo set to
r25755 r30118 55 55 fPts->n = Npts; 56 56 57 if (!pmTrend2DFit (trend, NULL, 0xff, xPts, yPts, fPts, NULL)) { 57 // XXX we should allow the spatial sampling to decrease if the fit fails 58 bool goodFit = false; 59 if (!pmTrend2DFit (&goodFit, trend, NULL, 0xff, xPts, yPts, fPts, NULL)) { 58 60 psError(PS_ERR_UNKNOWN, false, "Unable to fit trend"); 61 success = false; 62 goto DONE; 63 } 64 if (!goodFit) { 65 psError(PS_ERR_UNKNOWN, false, "poor fit to flux-scale trend"); 59 66 success = false; 60 67 goto DONE;
Note:
See TracChangeset
for help on using the changeset viewer.
