Changeset 2275 for trunk/psModules/src/pmReadoutCombine.c
- Timestamp:
- Nov 3, 2004, 4:02:10 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/pmReadoutCombine.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/pmReadoutCombine.c
r2270 r2275 5 5 * @author GLG, MHPCC 6 6 * 7 * @version $Revision: 1. 1$ $Name: not supported by cvs2svn $8 * @date $Date: 2004-11-0 3 22:10:37$7 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2004-11-04 02:02:10 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 15 15 #include<math.h> 16 16 #include "pslib.h" 17 // XXX: have Desonia do this correctly. 18 #include "../../psLib/src/dataManip/psConstants.h" 17 #include "psConstants.h" 19 18 20 19 typedef struct … … 90 89 // XXX 91 90 if (numInputCols != tmpReadout->image->numCols) { 92 psError( __func__, "Image %d not same size as other input images (%d, %d)\n",91 psError(PS_ERR_UNKNOWN,true, "Image %d not same size as other input images (%d, %d)\n", 93 92 tmpReadout->image->numRows, tmpReadout->image->numCols); 94 93 return(NULL); … … 96 95 // XXX 97 96 if (numInputRows != tmpReadout->image->numRows) { 98 psError( __func__, "Image %d not same size as other input images (%d, %d)\n",97 psError(PS_ERR_UNKNOWN,true, "Image %d not same size as other input images (%d, %d)\n", 99 98 tmpReadout->image->numRows, tmpReadout->image->numCols); 100 99 return(NULL); … … 111 110 112 111 if (1 < p_psDetermineNumBits(params->stats->options)) { 113 psError( __func__, "Multiple statistical options have been requested.\n");112 psError(PS_ERR_UNKNOWN,true, "Multiple statistical options have been requested.\n"); 114 113 return(NULL); 115 114 } … … 175 174 double statValue; 176 175 if (!p_psGetStatValue(stats, &statValue)) { 177 psError( __func__, "Could not determine stats value.\n");176 psError(PS_ERR_UNKNOWN,true, "Could not determine stats value.\n"); 178 177 return(NULL); 179 178 } else {
Note:
See TracChangeset
for help on using the changeset viewer.
