IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 8, 2006, 4:26:44 PM (20 years ago)
Author:
jhoblitt
Message:

normalize psTrace() facility names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/fits/psFitsTable.c

    r8232 r8245  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2006-08-08 23:32:23 $
     9 *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2006-08-09 02:26:44 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    7474    }
    7575
    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);
    7777    // the row parameter in the proper range?
    7878    if (row < 0 || row >= numRows) {
     
    110110                    fits_read_col(fits->fd, FITSTYPE, col,row+1, \
    111111                                  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", \
    113113                            col, name, typecode, repeat, (double)value); \
    114114                    psMetadataAdd(data,PS_LIST_TAIL, name, \
     
    144144                    fits_read_col(fits->fd, TSTRING, col,row+1,
    145145                                  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",
    147147                            col, name, typecode, repeat, value);
    148148                    if (anynul == 0) {
     
    158158                          typecode, col);
    159159
    160                 psTrace("psFits.psFitsReadTableRow", 2,
     160                psTrace("psLib.fits", 2,
    161161                        "Column %d or row %d was of a non primitive type, %d",
    162162                        col, row, typecode);
     
    387387
    388388    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);
    390390        table->data[row] = psFitsReadTableRow(fits,row);
    391391        table->n++;
Note: See TracChangeset for help on using the changeset viewer.