Changeset 24229 for trunk/ppImage
- Timestamp:
- May 20, 2009, 12:43:49 PM (17 years ago)
- Location:
- trunk/ppImage/src
- Files:
-
- 4 edited
-
Makefile.am (modified) (1 diff)
-
ppImage.h (modified) (2 diffs)
-
ppImageLoop.c (modified) (1 diff)
-
ppImageOptions.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/Makefile.am
r23845 r24229 54 54 ppImageDefineFile.c \ 55 55 ppImageSetMaskBits.c \ 56 ppImageParityFlip.c \ 56 57 ppImageCheckCTE.c \ 57 58 ppImageFileCheck.c \ -
trunk/ppImage/src/ppImage.h
r24079 r24229 43 43 bool doStats; // call ppStats on the image 44 44 bool checkCTE; // measure pixel-based variance 45 bool applyParity; // Apply Cell parities 45 46 46 47 bool doCrosstalkMeasure; // measure crosstalk signal … … 118 119 bool ppImageSetMaskBits (pmConfig *config, ppImageOptions *options); 119 120 121 // apply the cell flips to the input data before analysis 122 bool ppImageParityFlip (pmConfig *config, const ppImageOptions *options, const pmFPAview *view); 123 120 124 // Loop over the input 121 125 bool ppImageLoop(pmConfig *config, ppImageOptions *options); -
trunk/ppImage/src/ppImageLoop.c
r23845 r24229 98 98 continue; 99 99 } 100 101 // perform the detrend analysis 102 if (!ppImageParityFlip(config, options, view)) { 103 ESCAPE("Unable to detrend readout"); 104 } 105 106 // XXX TEST: 107 // psphotSaveImage (NULL, readout->image, "test.image.fits"); 100 108 101 109 // XXX set the options->*Mask values here (after the mask images have been loaded -
trunk/ppImage/src/ppImageOptions.c
r24079 r24229 36 36 options->doStats = false; // Measure and save image statistics 37 37 options->checkCTE = false; // Measure pixel-based variance 38 options->applyParity = false; // Apply Cell parities 38 39 39 40 // output files requested … … 229 230 } 230 231 232 options->applyParity = psMetadataLookupBool(NULL, recipe, "APPLY.CELL.PARITY"); 233 231 234 // binned image options 232 235 options->xBin1 = psMetadataLookupS32(&status, recipe, "BIN1.XBIN");
Note:
See TracChangeset
for help on using the changeset viewer.
