Changeset 8246 for trunk/psModules/src/camera/pmFPACopy.c
- Timestamp:
- Aug 8, 2006, 4:37:08 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/camera/pmFPACopy.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmFPACopy.c
r7834 r8246 92 92 } 93 93 } 94 psTrace( __func__, 3, "xFlip: %d; yFlip: %d\n", xFlip, yFlip);94 psTrace("psModules.camera", 3, "xFlip: %d; yFlip: %d\n", xFlip, yFlip); 95 95 } 96 96 … … 228 228 int xBin = psMetadataLookupS32(NULL, source->concepts, "CELL.XBIN"); // CELL.XBIN from source 229 229 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, 231 231 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); 233 233 xZero -= (readout->image->numCols - 1) * xParity * xBin; // Change the parity on the X0 position 234 234 psMetadataItem *newItem = psMetadataLookup(target->concepts, "CELL.X0"); // CELL.X0 from target … … 240 240 int yBin = psMetadataLookupS32(NULL, source->concepts, "CELL.YBIN"); // Parity in y 241 241 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, 243 243 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); 245 245 yZero -= (readout->image->numRows - 1) * yParity * yBin; // Change the parity on the Y0 position 246 246 psMetadataItem *newItem = psMetadataLookup(target->concepts, "CELL.Y0"); // CELL.Y0 from target
Note:
See TracChangeset
for help on using the changeset viewer.
