Changeset 13562 for trunk/ppImage/src/ppFocusParseCamera.c
- Timestamp:
- May 30, 2007, 3:24:59 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/ppImage/src/ppFocusParseCamera.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/ppFocusParseCamera.c
r13528 r13562 25 25 // not all input or output images are used in a given recipe 26 26 if (options->doBias) { 27 if (!ppImageDefineFile (config, input->fpa, "PPIMAGE.BIAS", "BIAS", PM_FPA_FILE_IMAGE )) {27 if (!ppImageDefineFile (config, input->fpa, "PPIMAGE.BIAS", "BIAS", PM_FPA_FILE_IMAGE, PM_DETREND_TYPE_BIAS)) { 28 28 psError (PS_ERR_IO, false, "Can't find a bias image source"); 29 29 return NULL; … … 31 31 } 32 32 if (options->doDark) { 33 if (!ppImageDefineFile (config, input->fpa, "PPIMAGE.DARK", "DARK", PM_FPA_FILE_IMAGE )) {33 if (!ppImageDefineFile (config, input->fpa, "PPIMAGE.DARK", "DARK", PM_FPA_FILE_IMAGE, PM_DETREND_TYPE_DARK)) { 34 34 psError (PS_ERR_IO, false, "Can't find a dark image source"); 35 35 return NULL; … … 37 37 } 38 38 if (options->doMask) { 39 if (!ppImageDefineFile (config, input->fpa, "PPIMAGE.MASK", "MASK", PM_FPA_FILE_MASK )) {39 if (!ppImageDefineFile (config, input->fpa, "PPIMAGE.MASK", "MASK", PM_FPA_FILE_MASK, PM_DETREND_TYPE_MASK)) { 40 40 psError (PS_ERR_IO, false, "Can't find a mask image source"); 41 41 return NULL; … … 43 43 } 44 44 if (options->doFlat) { 45 if (!ppImageDefineFile (config, input->fpa, "PPIMAGE.FLAT", "FLAT", PM_FPA_FILE_IMAGE )) {45 if (!ppImageDefineFile (config, input->fpa, "PPIMAGE.FLAT", "FLAT", PM_FPA_FILE_IMAGE, PM_DETREND_TYPE_FLAT)) { 46 46 psError (PS_ERR_IO, false, "Can't find a shutter image source"); 47 47 return NULL;
Note:
See TracChangeset
for help on using the changeset viewer.
