IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 30, 2012, 2:49:37 PM (14 years ago)
Author:
eugene
Message:

merge changes from trunk

Location:
branches/eam_branches/ipp-20111122/ppImage/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20111122/ppImage/src

  • branches/eam_branches/ipp-20111122/ppImage/src/ppImageOptions.c

    r31066 r33638  
    3434    options->doPatternRow    = false;   // Row pattern correction
    3535    options->doPatternCell   = false;   // Cell pattern correction
     36    options->doPatternContinuity = false; // Cell continuity correction
    3637    options->doFringe        = false;   // Fringe subtraction
    3738    options->doPhotom        = false;   // Source identification and photometry
     
    4041    options->doStats         = false;   // Measure and save image statistics
    4142    options->checkCTE        = false;   // Measure pixel-based variance
     43    options->checkNoise      = false;   // Measure cell-level variances.
    4244    options->applyParity     = false;   // Apply Cell parities
    4345    options->doMaskStats     = false;   // Calculate mask fractions
     
    253255    options->doPatternRow = psMetadataLookupBool(NULL, recipe, "PATTERN.ROW");
    254256    options->doPatternCell = psMetadataLookupBool(NULL, recipe, "PATTERN.CELL");
     257    options->doPatternContinuity = psMetadataLookupBool(NULL, recipe, "PATTERN.CONTINUITY");
    255258
    256259    options->doMaskStats = psMetadataLookupBool(NULL, recipe, "MASK.STATS");
     
    317320
    318321    options->checkCTE       = psMetadataLookupBool(NULL, recipe, "CHECK.CTE");
     322    options->checkNoise     = psMetadataLookupBool(NULL, recipe, "CHECK.NOISE");
    319323
    320324    /* doMaskBuild : there are some cases where we require a mask, so we force doMaskBuild to be set even if the user specified 'FALSE'
     
    408412    }
    409413
     414    if (psMetadataLookup(format, "PATTERN.CONTINUITY.WIDTH")) {
     415      options->patternContinuityEdgeWidth = psMetadataLookupS32(NULL, format, "PATTERN.CONTINUITY.WIDTH");
     416    }
     417    else {
     418      options->patternContinuityEdgeWidth = psMetadataLookupS32(NULL, recipe, "PATTERN.CONTINUITY.WIDTH");
     419    }
     420   
    410421
    411422    // Remnance options
Note: See TracChangeset for help on using the changeset viewer.