Changeset 10211 for trunk/ppImage/src/ppImageDetrendBias.c
- Timestamp:
- Nov 27, 2006, 6:20:39 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/ppImage/src/ppImageDetrendBias.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/ppImageDetrendBias.c
r9825 r10211 8 8 { 9 9 psTrace("ppImage", 1, "Commencing bias processing....\n"); 10 // psMetadataPrint(inputReadout->parent->concepts, 7);11 10 12 11 if (!pmSubtractBias(inputReadout, options->overscan, bias, dark)) { 13 return false; 12 psError(PS_ERR_UNKNOWN, false, "Unable to subtract bias.\n"); 13 return false; 14 14 } 15 15 16 16 // Output overscan fit results, if required 17 17 if (! options->doOverscan || ! options->overscan) { 18 return true; 18 return true; // No overscan fit to report 19 19 } 20 20 … … 33 33 psStringAppend(&coeffs, "%e ", poly->coeff[i]); 34 34 } 35 psLogMsg("p hase2", PS_LOG_INFO, "Overscan polynomial coefficients:\n%s\n", coeffs);35 psLogMsg("ppImage", PS_LOG_INFO, "Overscan polynomial coefficients:\n%s\n", coeffs); 36 36 psFree(coeffs); 37 37 break; … … 49 49 psStringAppend(&coeffs, "\n"); 50 50 } 51 psLogMsg("p hase2", PS_LOG_INFO, "Overscan spline coefficients:\n%s\n", coeffs);51 psLogMsg("ppImage", PS_LOG_INFO, "Overscan spline coefficients:\n%s\n", coeffs); 52 52 psFree(coeffs); 53 53 break;
Note:
See TracChangeset
for help on using the changeset viewer.
