Changeset 10211 for trunk/ppImage/src/ppImageDetrendFringe.c
- Timestamp:
- Nov 27, 2006, 6:20:39 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/ppImage/src/ppImageDetrendFringe.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/ppImageDetrendFringe.c
r9952 r10211 1 #ifdef HAVE_CONFIG_H 2 #include <config.h> 3 #endif 4 1 5 #include <stdio.h> 2 6 #include <pslib.h> 3 7 #include <psmodules.h> 4 8 9 #include "ppImageOptions.h" 5 10 #include "ppImageDetrendFringe.h" 6 11 7 bool ppImageDetrendFringeMeasure(pmReadout *readout, // Readout to measure 8 pmCell *fringe, // Fringe cell (each readout is a different component) 9 const ppImageOptions *options // Options 10 ) 12 bool ppImageDetrendFringeMeasure(pmReadout *readout, pmCell *fringe, const ppImageOptions *options) 11 13 { 12 14 PS_ASSERT_PTR_NON_NULL(readout, false); … … 98 100 // Solve the fringe system: we have science fringe measurements for each cell, and an array of reference 99 101 // fringe measurements for each cell. Need to concatenate these together first, and then solve. 100 bool ppImageDetrendFringeSolve(pmChip *scienceChip, // Chip with science 101 const pmChip *refChip, // Chip with reference fringes 102 const ppImageOptions *options // Options 103 ) 102 bool ppImageDetrendFringeSolve(pmChip *scienceChip, const pmChip *refChip, const ppImageOptions *options) 104 103 { 105 104 PS_ASSERT_PTR_NON_NULL(scienceChip, NULL); … … 142 141 143 142 144 psImage *ppImageDetrendFringeGenerate(pmCell *science, // Science cell 145 pmCell *fringes // Fringe cell, one readout per fringe component 146 ) 143 psImage *ppImageDetrendFringeGenerate(pmCell *science, pmCell *fringes) 147 144 { 148 145 PS_ASSERT_PTR_NON_NULL(science, false);
Note:
See TracChangeset
for help on using the changeset viewer.
