IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 13500


Ignore:
Timestamp:
May 23, 2007, 6:07:20 PM (19 years ago)
Author:
Paul Price
Message:

Use the standard functions for parsing/formatting CELL.XWINDOW,YWINDOW.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/concepts/pmConcepts.c

    r13499 r13500  
    873873            psMetadataItem *cellXwindow = psMetadataItemAllocS32("CELL.XWINDOW",
    874874                                                                 "Start of cell window (pixels)", 0);
    875             pmConceptRegister(cellXwindow, NULL, NULL, true, PM_FPA_LEVEL_CELL);
     875            pmConceptRegister(cellXwindow, (pmConceptParseFunc)p_pmConceptParse_Positions,
     876                              (pmConceptFormatFunc)p_pmConceptFormat_Positions, true, PM_FPA_LEVEL_CELL);
    876877            psFree(cellXwindow);
    877878        }
    878879
    879         // CELL.YSIZE
     880        // CELL.YWINDOW
    880881        {
    881882            psMetadataItem *cellYwindow = psMetadataItemAllocS32("CELL.YWINDOW",
    882883                                                                 "Start of cell window (pixels)", 0);
    883             pmConceptRegister(cellYwindow, NULL, NULL, true, PM_FPA_LEVEL_CELL);
     884            pmConceptRegister(cellYwindow, (pmConceptParseFunc)p_pmConceptParse_Positions,
     885                              (pmConceptFormatFunc)p_pmConceptFormat_Positions, true, PM_FPA_LEVEL_CELL);
    884886            psFree(cellYwindow);
    885887        }
Note: See TracChangeset for help on using the changeset viewer.