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/ppImageDetrendReadout.c

    r35531 r35685  
    5656    }
    5757    done_video_check:
    58    
     58
    5959    // Masking on the basis of pixel value needs to be done before anything else, so the values are pristine.
    6060    if (options->doMaskBuild) {
     
    7474      pmMaskBadPixels(input, mask, options->maskValue);
    7575    }
     76
     77    if (options->doApplyBurntool)
     78    {
     79        // extern bool ppImageBurntoolApply(pmConfig *, ppImageOptions *, pmFPAview *, pmReadout *);
     80        ppImageBurntoolApply(config, options, view, input);
     81    }
     82   
    7683    if (options->doMaskBurntool) {
    77       ppImageBurntoolMask(config,options,view,input);
     84        if (options->doApplyBurntool) {
     85            // build burntool mask from data input burntool table
     86            ppImageBurntoolMaskFromTable(config,options,view,input);
     87        } else {
     88            // build burntool mask from data in the input image's fits extension
     89            ppImageBurntoolMask(config,options,view,input);
     90        }
    7891    }
    7992
Note: See TracChangeset for help on using the changeset viewer.