- Timestamp:
- Jan 19, 2006, 4:38:28 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_rel9_p0/psModules/src/astrom/pmConceptsStandard.c
r5975 r6062 5 5 #include "pmConceptsRead.h" 6 6 #include "pmConceptsWrite.h" 7 #include "pm Astrometry.h"7 #include "pmFPA.h" 8 8 #include "pmConceptsStandard.h" 9 9 #include "psAdditionals.h" … … 987 987 { 988 988 psMetadataItem *x0item = psMetadataLookup(cell->concepts, "CELL.X0"); 989 x0item->data.S32 -= fortranCorr(fpa, "CELL.X0"); 990 return pmConceptWriteItem(fpa, chip, cell, db, x0item); 989 psMetadataItem *newItem = psMetadataItemAllocS32("CELL.X0", "Position of (0,0) on the chip", 990 x0item->data.S32 - fortranCorr(fpa, "CELL.X0")); 991 return pmConceptWriteItem(fpa, chip, cell, db, newItem); 991 992 } 992 993 … … 994 995 { 995 996 psMetadataItem *y0item = psMetadataLookup(cell->concepts, "CELL.Y0"); 996 y0item->data.S32 -= fortranCorr(fpa, "CELL.Y0"); 997 return pmConceptWriteItem(fpa, chip, cell, db, y0item); 998 } 999 997 psMetadataItem *newItem = psMetadataItemAllocS32("CELL.Y0", "Position of (0,0) on the chip", 998 y0item->data.S32 - fortranCorr(fpa, "CELL.Y0")); 999 return pmConceptWriteItem(fpa, chip, cell, db, newItem); 1000 } 1001
Note:
See TracChangeset
for help on using the changeset viewer.
