- Timestamp:
- May 26, 2009, 1:59:32 PM (17 years ago)
- Location:
- branches/cnb_branches/cnb_branch_20090301
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
ppImage (modified) (1 prop)
-
ppImage/src (modified) (1 prop)
-
ppImage/src/ppImageSetMaskBits.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/cnb_branches/cnb_branch_20090301
- Property svn:mergeinfo changed
-
branches/cnb_branches/cnb_branch_20090301/ppImage
- Property svn:mergeinfo changed
-
branches/cnb_branches/cnb_branch_20090301/ppImage/src
- Property svn:ignore
-
old new 9 9 stamp-h1 10 10 .libs 11 ppImageVersionDefinitions.h
-
- Property svn:ignore
-
branches/cnb_branches/cnb_branch_20090301/ppImage/src/ppImageSetMaskBits.c
r21364 r24244 14 14 // at this point we know we have valid values for required entries SAT, BAD, FLAT, BLANK: 15 15 16 // mask for non-linearflat corrections16 // mask for bad flat corrections 17 17 options->flatMask = pmConfigMaskGet("FLAT", config); 18 18 psAssert (options->flatMask, "flat mask not set"); 19 20 // mask for bad dark corrections 21 options->darkMask = pmConfigMaskGet("DARK", config); 22 psAssert (options->darkMask, "dark mask not set"); 19 23 20 24 // mask for non-existent data (default to DETECTOR if not defined) … … 27 31 28 32 // mask for below-range data (default to RANGE if not defined) 29 options->badMask = pmConfigMaskGet("BAD", config); 30 psAssert (options->badMask, "bad mask not set"); 33 options->lowMask = pmConfigMaskGet("LOW", config); 34 if (!options->lowMask) { 35 // look up old name for backward compatability 36 options->lowMask = pmConfigMaskGet("BAD", config); 37 } 38 psAssert (options->lowMask, "low mask not set"); 31 39 32 40 // save MASK and MARK on the PSPHOT recipe
Note:
See TracChangeset
for help on using the changeset viewer.
