Changeset 1483
- Timestamp:
- Aug 11, 2004, 1:16:15 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/astronomy/psAstrometry.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astronomy/psAstrometry.c
r1481 r1483 8 8 * @author George Gusciora, MHPCC 9 9 * 10 * @version $Revision: 1.1 2$ $Name: not supported by cvs2svn $11 * @date $Date: 2004-08-11 23: 08:37$10 * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2004-08-11 23:16:15 $ 12 12 * 13 13 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 203 203 for (int i = 0; i < cells->n; i++) { 204 204 psCell* tmpCell = (psCell* ) cells->data[i]; 205 psArray* readouts = tmpCell->readouts; 206 207 // We only check a single readout for this cell since we assume that 208 // all readouts for a cell have identical parameters. 209 if (readouts != NULL) { 210 psReadout* tmpReadout = readouts->data[0]; 211 205 psReadout *tmpReadout = tmpCell->readouts; 206 207 while (tmpReadout != NULL) { 212 208 cellCoord = psPlaneTransformApply(cellCoord, 213 209 tmpCell->fromChip, … … 218 214 return (tmpCell); 219 215 } 216 tmpReadout++; 220 217 } 221 218 }
Note:
See TracChangeset
for help on using the changeset viewer.
