Changeset 33412 for tags/ipp-20120216
- Timestamp:
- Mar 5, 2012, 5:01:25 PM (14 years ago)
- Location:
- tags/ipp-20120216/psphot
- Files:
-
- 5 edited
-
. (modified) (1 prop)
-
src (modified) (1 prop)
-
src/psphotRadialProfileWings.c (modified) (1 diff)
-
src/psphotSersicModelClass.c (modified) (1 diff)
-
src/psphotStackImageLoop.c (modified) (1 prop)
Legend:
- Unmodified
- Added
- Removed
-
tags/ipp-20120216/psphot
- Property svn:mergeinfo changed
/trunk/psphot (added) merged: 33410-33411
- Property svn:mergeinfo changed
-
tags/ipp-20120216/psphot/src
- Property svn:mergeinfo changed
/trunk/psphot/src (added) merged: 33410-33411
- Property svn:mergeinfo changed
-
tags/ipp-20120216/psphot/src/psphotRadialProfileWings.c
r33089 r33412 307 307 // linearly interpolate to the radius at which we hit the sky, using the last flux and the limiting slope 308 308 if (isfinite(lastFlux)) { 309 limitRadius = lastRadius + lastFlux / 3.0; 309 float interpolatedRadius = lastRadius + lastFlux / 3.0; 310 if (interpolatedRadius < MAX_RADIUS) { 311 limitRadius = interpolatedRadius; 312 } else { 313 // XXX should we keep going in this case? 314 limitRadius = meanRadius; 315 } 310 316 } else { 311 317 limitRadius = meanRadius; -
tags/ipp-20120216/psphot/src/psphotSersicModelClass.c
r32348 r33412 546 546 // set the normalization by linear fit between model and data 547 547 psphotSersicModelNorm (pcm, source); 548 if (!isfinite(PAR[PM_PAR_I0])) { 549 fprintf(stderr, "psphotSersicModelClassGuessPCM: psphotSerisicModelNorm set PM_PAR_I0 to NAN\n"); 550 return false; 551 } 548 552 549 553 if (TIMING) { t5 = psTimerMark ("SersicGuess"); } -
tags/ipp-20120216/psphot/src/psphotStackImageLoop.c
- Property svn:mergeinfo changed (with no actual effect on merging)
Note:
See TracChangeset
for help on using the changeset viewer.
