IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 7439


Ignore:
Timestamp:
Jun 8, 2006, 11:11:35 AM (20 years ago)
Author:
Paul Price
Message:

Adding CHIP.X0 and CHIP.Y0 to concepts.

File:
1 edited

Legend:

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

    r7409 r7439  
    401401        conceptsChip = psMetadataAlloc();
    402402        init = true;
    403         // There are no standard concepts at the chip level to be installed
     403
     404        // Install the standard concepts
     405
     406        // CHIP.X0
     407        {
     408            psMetadataItem *chipX0 = psMetadataItemAllocF32("CHIP.X0", "Position of (0,0) on the FPA", NAN);
     409            pmConceptRegister(chipX0, NULL, NULL, PM_FPA_LEVEL_CHIP);
     410            psFree(chipX0);
     411        }
     412
     413        // CHIP.Y0
     414        {
     415            psMetadataItem *chipY0 = psMetadataItemAllocF32("CHIP.Y0", "Position of (0,0) on the FPA", NAN);
     416            pmConceptRegister(chipY0, NULL, NULL, PM_FPA_LEVEL_CHIP);
     417            psFree(chipY0);
     418        }
     419
     420        // Done with chip level concepts
    404421    }
    405422    if (! conceptsCell) {
Note: See TracChangeset for help on using the changeset viewer.