IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 7447


Ignore:
Timestamp:
Jun 8, 2006, 2:19:55 PM (20 years ago)
Author:
Paul Price
Message:

Adding CHIP.XPARITY and CHIP.YPARITY.

File:
1 edited

Legend:

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

    r7446 r7447  
    404404        // Install the standard concepts
    405405
     406        // CHIP.XPARITY
     407        {
     408            psMetadataItem *chipXparity = psMetadataItemAllocS32("CHIP.XPARITY",
     409                                          "Orientation in x compared to the rest of the FPA", 0);
     410            pmConceptRegister(chipXparity, NULL, NULL, PM_FPA_LEVEL_CHIP);
     411            psFree(chipXparity);
     412        }
     413
     414        // CHIP.YPARITY
     415        {
     416            psMetadataItem *chipYparity = psMetadataItemAllocS32("CHIP.YPARITY",
     417                                          "Orientation in x compared to the rest of the FPA", 0);
     418            pmConceptRegister(chipYparity, NULL, NULL, PM_FPA_LEVEL_CHIP);
     419            psFree(chipYparity);
     420        }
     421
    406422        // CHIP.X0
    407423        {
     
    461477        {
    462478            psMetadataItem *cellXparity = psMetadataItemAllocS32("CELL.XPARITY",
    463                                           "Orientation in x compared to the rest of the FPA", 0);
     479                                          "Orientation in x compared to the rest of the chip", 0);
    464480            pmConceptRegister(cellXparity, NULL, NULL, PM_FPA_LEVEL_CELL);
    465481            psFree(cellXparity);
     
    469485        {
    470486            psMetadataItem *cellYparity = psMetadataItemAllocS32("CELL.YPARITY",
    471                                           "Orientation in x compared to the rest of the FPA", 0);
     487                                          "Orientation in x compared to the rest of the chip", 0);
    472488            pmConceptRegister(cellYparity, NULL, NULL, PM_FPA_LEVEL_CELL);
    473489            psFree(cellYparity);
Note: See TracChangeset for help on using the changeset viewer.