Changeset 15060
- Timestamp:
- Sep 27, 2007, 2:43:32 PM (19 years ago)
- Location:
- trunk/psphot/src
- Files:
-
- 2 edited
-
psphotEvalFLT.c (modified) (1 diff)
-
psphotEvalPSF.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot/src/psphotEvalFLT.c
r14655 r15060 32 32 33 33 // if the object has a fitted peak below 0, the fit did not converge cleanly 34 if (model->params->data.F32[1] <= 0) { 34 // XXX this limit is fairly arbitrary, and must be > the value is the model limits 35 if (model->params->data.F32[PM_PAR_I0] <= 0.02) { 35 36 source->mode |= PM_SOURCE_MODE_FAIL; 36 37 return false; -
trunk/psphot/src/psphotEvalPSF.c
r13804 r15060 104 104 } 105 105 106 // if the object has a fitted peak below 0, the fit did not converge cleanly 107 if (model->params->data.F32[PM_PAR_I0] <= 0) { 106 // if the object has a fitted peak below 0.02, the source is not viable 107 // perhaps the fit did not converge cleanly 108 if (model->params->data.F32[PM_PAR_I0] <= 0.02) { 108 109 source->mode |= PM_SOURCE_MODE_FAIL; 109 110 if (source->mode & PM_SOURCE_MODE_SATSTAR) {
Note:
See TracChangeset
for help on using the changeset viewer.
