Changeset 7531 for trunk/ppImage/src/ppImageDetrendReadout.c
- Timestamp:
- Jun 12, 2006, 4:49:23 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ppImage/src/ppImageDetrendReadout.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/ppImageDetrendReadout.c
r7522 r7531 39 39 40 40 // Bias, dark and overscan subtraction are all merged. 41 ppImageDetrendBias(input, bias, dark, options); 41 if (options->doBias || options->doDark) { 42 ppImageDetrendBias(input, bias, dark, options); 43 } 42 44 43 45 // Flat-field correction (no options used?) 44 46 if (options->doFlat) { 45 pmReadout *flat = pmFPAfileThisReadout (config->files, detview, "PPIMAGE.FLAT");47 pmReadout *flat = pmFPAfileThisReadout (config->files, detview, "PPIMAGE.FLAT"); 46 48 pmFlatField(input, flat); 47 49 } … … 50 52 return true; 51 53 } 52 53 // XXX in psphot, the recipe options are parsed at this depth54 // XXX consider if we move ppImageOptions in here55 // psMetadata *recipe = psMetadataLookupPtr (&status, config->recipes, "PSPHOT");56
Note:
See TracChangeset
for help on using the changeset viewer.
