IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 19, 2013, 10:21:44 AM (13 years ago)
Author:
bills
Message:

Add ppImage recipe value APPLY.BURNTOOL defaults to TRUE.
If USE.DEBURNED.IMAGE is set burntool will be applied in ppImage
if APPLY.BURNTOOL is true. If APPLY.BURNTOOL is false burntool will
be applied using the burntool program by chip_imfile.pl. If USE.DEBURNED.IMAGE
is false (default for other cameras) burntool will not be applied at all.
Also added recipe CHIP_PRESERVE_BG_AUXMASK which will be used for M31
processing. CHIP_PRESERVE_BG changed to set MASK.AUXMASK false
Added M31_BG_PRESERVE reduction

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppImage/src/ppImageOptions.c

    r35531 r35685  
    2323    options->doMaskLow       = false;   // mask low pixels
    2424    options->doMaskBurntool  = false;   // mask potential burntool trails
     25    options->doApplyBurntool = false;   // apply burntool correction
    2526    options->doVarianceBuild = false;   // Build internal variance
    2627    options->doMask          = false;   // Mask bad pixels
     
    231232    options->doMaskLow       = psMetadataLookupBool(NULL, recipe, "MASK.LOW");
    232233    options->doMaskBurntool  = psMetadataLookupBool(NULL, recipe, "MASK.BURNTOOL");
     234    options->doApplyBurntool = psMetadataLookupBool(NULL, recipe, "APPLY.BURNTOOL");
    233235    options->doVarianceBuild = psMetadataLookupBool(NULL, recipe, "VARIANCE.BUILD");
    234236    options->doAuxMask       = psMetadataLookupBool(NULL, recipe, "MASK.AUXMASK");
Note: See TracChangeset for help on using the changeset viewer.