Changeset 8245 for trunk/psLib/src/fits/psFitsTable.c
- Timestamp:
- Aug 8, 2006, 4:26:44 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/fits/psFitsTable.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/fits/psFitsTable.c
r8232 r8245 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1. 19$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-08-0 8 23:32:23$9 * @version $Revision: 1.20 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-08-09 02:26:44 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 74 74 } 75 75 76 psTrace(" .psFits.psFitsReadTableRow",5,"Table size is %ix%i\n",numCols, numRows);76 psTrace("psLib.fits",5,"Table size is %ix%i\n",numCols, numRows); 77 77 // the row parameter in the proper range? 78 78 if (row < 0 || row >= numRows) { … … 110 110 fits_read_col(fits->fd, FITSTYPE, col,row+1, \ 111 111 1, 1, NULL, &value, &anynul, &status); \ 112 psTrace(" .psFits.psFitsReadTableRow",5,"Column #%i, '%s', is type %i, repeat %i, Value = %g\n", \112 psTrace("psLib.fits",5,"Column #%i, '%s', is type %i, repeat %i, Value = %g\n", \ 113 113 col, name, typecode, repeat, (double)value); \ 114 114 psMetadataAdd(data,PS_LIST_TAIL, name, \ … … 144 144 fits_read_col(fits->fd, TSTRING, col,row+1, 145 145 1, 1, NULL, &value, &anynul, &status); 146 psTrace(" .psFits.psFitsReadTableRow",5,"Column #%i, '%s', is type %i, repeat %i, value = %s\n",146 psTrace("psLib.fits",5,"Column #%i, '%s', is type %i, repeat %i, value = %s\n", 147 147 col, name, typecode, repeat, value); 148 148 if (anynul == 0) { … … 158 158 typecode, col); 159 159 160 psTrace("ps Fits.psFitsReadTableRow", 2,160 psTrace("psLib.fits", 2, 161 161 "Column %d or row %d was of a non primitive type, %d", 162 162 col, row, typecode); … … 387 387 388 388 for (int row = 0; row < numRows; row++) { 389 psTrace(" .psFits.psFitsReadTable",5,"Reading row %i of %i\n",row, numRows);389 psTrace("psLib.fits",5,"Reading row %i of %i\n",row, numRows); 390 390 table->data[row] = psFitsReadTableRow(fits,row); 391 391 table->n++;
Note:
See TracChangeset
for help on using the changeset viewer.
