IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 8, 2006, 5:08:08 PM (20 years ago)
Author:
Paul Price
Message:

Broad changes to introduce pmHDU, and allow read/write at any level. Modified the camera configuration to use camera config (components of the camera) and format descriptions (FITS file layout).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/rel10_ifa/psModules/src/astrom/pmConceptsStandard.c

    r6448 r6552  
    663663    if (strcasecmp(source, "VALUE") == 0) {
    664664        // Check that it's the same value as stored in the camera
    665         psString checkString = psMetadataLookupStr(NULL, cell->camera, "CELL.TRIMSEC");
     665        psString checkString = psMetadataLookupStr(NULL, cell->config, "CELL.TRIMSEC");
    666666        psRegion checkRegion = psRegionFromString(checkString);
    667667        if (! COMPARE_REGIONS(&checkRegion, trimsec)) {
     
    709709    if (strcasecmp(source, "VALUE") == 0) {
    710710        // Check that it's the same value as stored in the camera
    711         psString checkString = psMetadataLookupStr(NULL, cell->camera, "CELL.BIASSEC");
     711        psString checkString = psMetadataLookupStr(NULL, cell->config, "CELL.BIASSEC");
    712712        psList *checkList = psStringSplit(checkString, " ;");
    713713        if (biassecs->n != checkList->n) {
     
    763763
    764764    if (strcasecmp(source, "HEADER") == 0) {
    765         psString keywordsString = psMetadataLookupStr(NULL, cell->camera, "CELL.BIASSEC");
     765        psString keywordsString = psMetadataLookupStr(NULL, cell->config, "CELL.BIASSEC");
    766766        psList *keywords = psStringSplit(keywordsString, " ,;");
    767767        if (biassecs->n != keywords->n) {
Note: See TracChangeset for help on using the changeset viewer.