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/camera/pmFPACopy.c

    r7834 r8246  
    9292            }
    9393        }
    94         psTrace(__func__, 3, "xFlip: %d; yFlip: %d\n", xFlip, yFlip);
     94        psTrace("psModules.camera", 3, "xFlip: %d; yFlip: %d\n", xFlip, yFlip);
    9595    }
    9696
     
    228228        int xBin = psMetadataLookupS32(NULL, source->concepts, "CELL.XBIN"); // CELL.XBIN from source
    229229        pmReadout *readout = source->readouts->data[0]; // A representative readout
    230         psTrace(__func__, 3, "CELL.X0: Before: %d After: %d\n", xZero,
     230        psTrace("psModules.camera", 3, "CELL.X0: Before: %d After: %d\n", xZero,
    231231                xZero - (readout->image->numCols - 1) * xParity * xBin);
    232         psTrace(__func__, 9, "(xParity: %d xBin: %d numCols: %d)\n", xParity, xBin, readout->image->numCols);
     232        psTrace("psModules.camera", 9, "(xParity: %d xBin: %d numCols: %d)\n", xParity, xBin, readout->image->numCols);
    233233        xZero -= (readout->image->numCols - 1) * xParity * xBin; // Change the parity on the X0 position
    234234        psMetadataItem *newItem = psMetadataLookup(target->concepts, "CELL.X0"); // CELL.X0 from target
     
    240240        int yBin = psMetadataLookupS32(NULL, source->concepts, "CELL.YBIN"); // Parity in y
    241241        pmReadout *readout = source->readouts->data[0]; // A representative readout
    242         psTrace(__func__, 3, "CELL.Y0: Before: %d After: %d\n", yZero,
     242        psTrace("psModules.camera", 3, "CELL.Y0: Before: %d After: %d\n", yZero,
    243243                yZero - (readout->image->numRows - 1) * yParity * yBin);
    244         psTrace(__func__, 9, "(yParity: %d yBin: %d numRows: %d)\n", yParity, yBin, readout->image->numRows);
     244        psTrace("psModules.camera", 9, "(yParity: %d yBin: %d numRows: %d)\n", yParity, yBin, readout->image->numRows);
    245245        yZero -= (readout->image->numRows - 1) * yParity * yBin; // Change the parity on the Y0 position
    246246        psMetadataItem *newItem = psMetadataLookup(target->concepts, "CELL.Y0"); // CELL.Y0 from target
Note: See TracChangeset for help on using the changeset viewer.