IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 9, 2025, 11:28:49 AM (15 months ago)
Author:
eugene
Message:

optionally allow PSF star positions to be fitted during PSF model construction (default false); option to allow PSF clump analysis to use clipped stats (default) or robust stats; use select circular region of 2nd moment space, not square region; for bright (S/N > 25) externally-supplied sources, use the centroid (Mx,My) value instead of the peak

Location:
trunk/psModules
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules

  • trunk/psModules/src/objects/pmSourceFitModel.c

    r42093 r42843  
    189189        constraint->paramMask->data.PS_TYPE_VECTOR_MASK_DATA[PM_PAR_XPOS] = 0;
    190190        constraint->paramMask->data.PS_TYPE_VECTOR_MASK_DATA[PM_PAR_YPOS] = 0;
     191        break;
     192      case PM_SOURCE_FIT_FULL:
     193        // PSFstar Full model fits all shape params and Xo, Yo, Io (not sky)
     194        nParams = params->n - 1;
     195        psVectorInit (constraint->paramMask, 0);
     196        constraint->paramMask->data.PS_TYPE_VECTOR_MASK_DATA[PM_PAR_SKY] = 1;
    191197        break;
    192198      case PM_SOURCE_FIT_EXT:
     
    270276    model->nPar = nParams;
    271277
    272     psTrace ("psModules.objects", 4, "niter: %d, chisq: %f", myMin->iter, myMin->value);
     278    psTrace ("psModules.objects", 4, "niter: %d, chisq: %f, status: %d", myMin->iter, myMin->value, fitStatus);
    273279
    274280    // save the resulting chisq, nDOF, nIter
Note: See TracChangeset for help on using the changeset viewer.