Changeset 2148 for trunk/psModules/src/pmSubtractBias.c
- Timestamp:
- Oct 14, 2004, 4:20:39 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/pmSubtractBias.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/pmSubtractBias.c
r2147 r2148 6 6 * @author George Gusciora, MHPCC 7 7 * 8 * @version $Revision: 1.1 5$ $Name: not supported by cvs2svn $9 * @date $Date: 2004-10-15 02: 15:48$8 * @version $Revision: 1.16 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2004-10-15 02:20:39 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 33 33 34 34 if (bias == NULL) { 35 // XXX: Generate warning message?35 printf("WARNING: bias frame is NULL\n"); 36 36 return(in); 37 37 } … … 130 130 131 131 if (numOptions == 0) { 132 // XXX: psErrorMsg()132 psError(__func__, "No statistics options have been specified\n"); 133 133 } 134 134 if (numOptions != 1) { 135 // XXX:Generate warning message.135 printf("WARNING: Too many statistics options have been specified\n"); 136 136 } 137 137 return(opt); … … 230 230 if ((overscans == NULL) && (overScanAxis != PM_OVERSCAN_NONE)) { 231 231 psError(__func__, "(overscans == NULL) && (overScanAxis != PM_OVERSCAN_NONE)\n"); 232 //XXX: psErrorMsg()233 232 return(in); 234 233 } … … 237 236 (overScanAxis == PM_OVERSCAN_ALL)) && 238 237 (fit == PM_FIT_NONE)) { 239 //XXX: psWarningMsg()238 printf("WARNING: overScanAxis equals NONE or ALL, and fit equals NONE\n"); 240 239 //XXX: Then what? 241 printf("WARNING: overScanAxis equals NONE or ALL, and fit equals NONE\n");242 // return(in);243 240 } 244 241 … … 375 372 } else if (fit == PM_FIT_SPLINE) { 376 373 mySpline = (psSpline1D *) fitSpec; 377 // XXX: What is the point of doing this? 374 // XXX: The spline functions do not currently work if the number of 375 // data points and the number of splines are not equal. 378 376 } 379 377 }
Note:
See TracChangeset
for help on using the changeset viewer.
