IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 25, 2007, 2:27:15 PM (19 years ago)
Author:
eugene
Message:

adding fringe residual measurement in addition to fringe amplitude; clean up ppImageLoop calls to stats and fringe

File:
1 edited

Legend:

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

    r13921 r13970  
    3939    options->doAstromChip = false;      // Astrometry
    4040    options->doAstromMosaic = false;    // Astrometry
     41
     42    options->doStats    = false;        // Measure and save image statistics
    4143
    4244    options->BaseFITS   = false;        // create binned image (scale 1)
     
    187189    options->doShutter = psMetadataLookupBool(NULL, recipe, "SHUTTER");
    188190
     191    options->doStats = false;
     192    char *statsName = psMetadataLookupStr(&status, config->arguments, "STATS"); // Filename for statistics
     193    if (statsName) {
     194        options->doStats = true;
     195    }
     196
    189197    // binned image options
    190198    options->xBin1 = psMetadataLookupS32(&status, recipe, "BIN1.XBIN");
Note: See TracChangeset for help on using the changeset viewer.