IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

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

normalize psTrace() facility names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/imcombine/pmReadoutCombine.c

    r7868 r8246  
    55 *  @author GLG, MHPCC
    66 *
    7  *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2006-07-12 03:30:53 $
     7 *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2006-08-09 02:37:07 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    168168        minInputCols = PS_MIN(minInputCols, readout->col0);
    169169        maxInputCols = PS_MAX(maxInputCols, readout->col0 + readout->image->numCols);
    170         psTrace(__func__, 7, "Readout %d: offset %d,%d; size %dx%d\n", i,
     170        psTrace("psModules.imcombine", 7, "Readout %d: offset %d,%d; size %dx%d\n", i,
    171171                readout->col0, readout->row0, readout->image->numCols, readout->image->numRows);
    172172    }
     
    184184        *(psS32 *) &(output->row0) = minInputRows;
    185185    }
    186     psTrace(__func__, 7, "Output minimum: %d,%d\n", output->col0, output->row0);
     186    psTrace("psModules.imcombine", 7, "Output minimum: %d,%d\n", output->col0, output->row0);
    187187
    188188    // Allocate the output products
     
    274274    #ifndef PS_NO_TRACE
    275275
    276     psTrace(__func__, 3, "Iterating output: %d --> %d, %d --> %d\n",
     276    psTrace("psModules.imcombine", 3, "Iterating output: %d --> %d, %d --> %d\n",
    277277            minInputCols - output->col0, maxInputCols - output->col0,
    278278            minInputRows - output->row0, maxInputRows - output->row0);
     
    280280        for (int r = 0; r < inputs->n; r++) {
    281281            pmReadout *readout = inputs->data[r]; // Input readout
    282             psTrace(__func__, 3, "Iterating input %d: %d --> %d, %d --> %d\n", r,
     282            psTrace("psModules.imcombine", 3, "Iterating input %d: %d --> %d, %d --> %d\n", r,
    283283                    minInputCols - readout->col0, maxInputCols - readout->col0,
    284284                    minInputRows - readout->row0, maxInputRows - readout->row0);
Note: See TracChangeset for help on using the changeset viewer.