Changeset 8669 for trunk/psModules/src/imcombine/pmReadoutCombine.c
- Timestamp:
- Aug 29, 2006, 11:39:44 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/imcombine/pmReadoutCombine.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/imcombine/pmReadoutCombine.c
r8246 r8669 5 5 * @author GLG, MHPCC 6 6 * 7 * @version $Revision: 1.2 3$ $Name: not supported by cvs2svn $8 * @date $Date: 2006-08- 09 02:37:07$7 * @version $Revision: 1.24 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2006-08-29 21:39:44 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 136 136 137 137 if (!readout || !readout->image) { 138 psError(PS_ERR_UNEXPECTED_NULL, true, "Input readout % d is NULL or has NULL image.\n", i);138 psError(PS_ERR_UNEXPECTED_NULL, true, "Input readout %ld is NULL or has NULL image.\n", i); 139 139 return false; 140 140 } … … 151 151 if (readout->weight) { 152 152 if (valid && !haveWeights) { 153 psLogMsg(__func__, PS_LOG_WARN, "Readout % d has a weight map, but others don't --- "153 psLogMsg(__func__, PS_LOG_WARN, "Readout %ld has a weight map, but others don't --- " 154 154 "weights ignored.\n", i); 155 155 } else { … … 157 157 } 158 158 } else if (haveWeights) { 159 psLogMsg(__func__, PS_LOG_WARN, "Readout % d doesn't have a weight map, but others do --- "159 psLogMsg(__func__, PS_LOG_WARN, "Readout %ld doesn't have a weight map, but others do --- " 160 160 "weights ignored.\n", i); 161 161 haveWeights = false; … … 168 168 minInputCols = PS_MIN(minInputCols, readout->col0); 169 169 maxInputCols = PS_MAX(maxInputCols, readout->col0 + readout->image->numCols); 170 psTrace("psModules.imcombine", 7, "Readout % d: offset %d,%d; size %dx%d\n", i,170 psTrace("psModules.imcombine", 7, "Readout %ld: offset %d,%d; size %dx%d\n", i, 171 171 readout->col0, readout->row0, readout->image->numCols, readout->image->numRows); 172 172 }
Note:
See TracChangeset
for help on using the changeset viewer.
