Changeset 12504
- Timestamp:
- Mar 19, 2007, 3:30:45 PM (19 years ago)
- Location:
- trunk/psModules/src
- Files:
-
- 3 edited
-
camera/pmCellSquish.c (modified) (2 diffs)
-
config/pmConfig.c (modified) (2 diffs)
-
detrend/pmShifts.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmCellSquish.c
r12265 r12504 23 23 } 24 24 25 pmShifts *shifts ; // Orthogonal transfer shifts25 pmShifts *shifts = NULL; // Orthogonal transfer shifts 26 26 if (useShifts) { 27 27 bool mdok; // Status of MD lookup … … 40 40 41 41 // First pass to get the bounds, make sure everything is legit. 42 int xMin , xMax, yMin, yMax;// Bounds of the squish42 int xMin = 0, xMax = 0, yMin = 0, yMax = 0; // Bounds of the squish 43 43 bool valid = false; // Do we have a valid readout? 44 int col0 , row0, numCols, numRows;// Window parameters for the readouts44 int col0 = 0, row0 = 0, numCols = 0, numRows = 0;// Window parameters for the readouts 45 45 int xShift = 0, yShift = 0; // Shift due to orthogonal transfer, to be applied 46 46 if (useShifts && shifts->xyRelative) { -
trunk/psModules/src/config/pmConfig.c
r12501 r12504 4 4 * @author EAM (IfA) 5 5 * 6 * @version $Revision: 1.7 8$ $Name: not supported by cvs2svn $7 * @date $Date: 2007-03-20 0 0:52:16$6 * @version $Revision: 1.79 $ $Name: not supported by cvs2svn $ 7 * @date $Date: 2007-03-20 01:30:45 $ 8 8 * 9 9 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 427 427 continue; 428 428 } 429 psTrace("psModules.config", 7, "Setting trace level for %s to %d\n", traceItem->name, 430 traceItem->data.S32); 429 psTrace("psModules.config", 7, "Setting trace level for %s to %d\n", traceItem->name, traceItem->data.S32); 431 430 (void)psTraceSetLevel(traceItem->name, traceItem->data.S32); 432 431 } -
trunk/psModules/src/detrend/pmShifts.c
r12264 r12504 211 211 psMetadata *row = table->data[i]; // The row of interest 212 212 213 const char *chipName ;// Name of chip213 const char *chipName = NULL; // Name of chip 214 214 if (phuLevel == PM_FPA_LEVEL_FPA) { 215 215 // Only care about the chip name if there's more than one chip … … 223 223 } 224 224 } 225 const char *cellName ;// Name of cell225 const char *cellName = NULL; // Name of cell 226 226 if (phuLevel <= PM_FPA_LEVEL_CHIP) { 227 227 // Only care about the cell name if there's a chip
Note:
See TracChangeset
for help on using the changeset viewer.
