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_RGAUSS.c

    r25754 r26916  
    4646static float paramsMinLax[] = { -1.0e3, 1.0e-2, -100, -100, 0.5, 0.5, -1.0, 1.25 };
    4747static float paramsMaxLax[] = { 1.0e5, 1.0e8, 1.0e4, 1.0e4, 100, 100, 1.0, 4.0 };
     48
     49// Moderate parameter limits
     50static float *paramsMinModerate = paramsMinLax;
     51static float *paramsMaxModerate = paramsMaxLax;
    4852
    4953// Strict parameter limits
     
    440444        limitsApply = true;
    441445        break;
     446      case PM_MODEL_LIMITS_MODERATE:
     447        paramsMinUse = paramsMinModerate;
     448        paramsMaxUse = paramsMaxModerate;
     449        limitsApply = true;
     450        break;
    442451      case PM_MODEL_LIMITS_STRICT:
    443452        paramsMinUse = paramsMinStrict;
Note: See TracChangeset for help on using the changeset viewer.