IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 11, 2010, 3:32:38 PM (16 years ago)
Author:
Paul Price
Message:

Adding moderate PSF limits: neither lax nor strict. The idea is to allow slightly bad PSFs to go into the stack PSF envelope calculation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/objects/models/pmModel_QGAUSS.c

    r25754 r26916  
    4646static float paramsMinLax[] = { -1.0e3, 1.0e-2, -100, -100, 0.5, 0.5, -1.0, 0.1 };
    4747static float paramsMaxLax[] = { 1.0e5, 1.0e8, 1.0e4, 1.0e4, 100, 100, 1.0, 20.0 };
     48
     49// Moderate parameter limits
     50static float *paramsMinModerate = paramsMinLax;
     51static float *paramsMaxModerate = paramsMaxLax;
    4852
    4953// Strict parameter limits
     
    446450        limitsApply = true;
    447451        break;
     452      case PM_MODEL_LIMITS_MODERATE:
     453        paramsMinUse = paramsMinModerate;
     454        paramsMaxUse = paramsMaxModerate;
     455        limitsApply = true;
     456        break;
    448457      case PM_MODEL_LIMITS_STRICT:
    449458        paramsMinUse = paramsMinStrict;
Note: See TracChangeset for help on using the changeset viewer.