Changeset 7441 for trunk/psModules/src/concepts/pmConcepts.c
- Timestamp:
- Jun 8, 2006, 12:08:03 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/concepts/pmConcepts.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/concepts/pmConcepts.c
r7439 r7441 407 407 { 408 408 psMetadataItem *chipX0 = psMetadataItemAllocF32("CHIP.X0", "Position of (0,0) on the FPA", NAN); 409 pmConceptRegister(chipX0, NULL, NULL, PM_FPA_LEVEL_CHIP); 409 pmConceptRegister(chipX0, (pmConceptParseFunc)p_pmConceptParse_Positions, 410 (pmConceptFormatFunc)p_pmConceptFormat_Positions, PM_FPA_LEVEL_CHIP); 410 411 psFree(chipX0); 411 412 } … … 414 415 { 415 416 psMetadataItem *chipY0 = psMetadataItemAllocF32("CHIP.Y0", "Position of (0,0) on the FPA", NAN); 416 pmConceptRegister(chipY0, NULL, NULL, PM_FPA_LEVEL_CHIP); 417 pmConceptRegister(chipY0, (pmConceptParseFunc)p_pmConceptParse_Positions, 418 (pmConceptFormatFunc)p_pmConceptFormat_Positions, PM_FPA_LEVEL_CHIP); 417 419 psFree(chipY0); 418 420 } … … 567 569 { 568 570 psMetadataItem *cellX0 = psMetadataItemAllocS32("CELL.X0", "Position of (0,0) on the chip", 0); 569 pmConceptRegister(cellX0, (pmConceptParseFunc)p_pmConceptParse_ CELL_Positions,570 (pmConceptFormatFunc)p_pmConceptFormat_ CELL_Positions, PM_FPA_LEVEL_CELL);571 pmConceptRegister(cellX0, (pmConceptParseFunc)p_pmConceptParse_Positions, 572 (pmConceptFormatFunc)p_pmConceptFormat_Positions, PM_FPA_LEVEL_CELL); 571 573 psFree(cellX0); 572 574 } … … 575 577 { 576 578 psMetadataItem *cellY0 = psMetadataItemAllocS32("CELL.Y0", "Position of (0,0) on the chip", 0); 577 pmConceptRegister(cellY0, (pmConceptParseFunc)p_pmConceptParse_ CELL_Positions,578 (pmConceptFormatFunc)p_pmConceptFormat_ CELL_Positions, PM_FPA_LEVEL_CELL);579 pmConceptRegister(cellY0, (pmConceptParseFunc)p_pmConceptParse_Positions, 580 (pmConceptFormatFunc)p_pmConceptFormat_Positions, PM_FPA_LEVEL_CELL); 579 581 psFree(cellY0); 580 582 }
Note:
See TracChangeset
for help on using the changeset viewer.
