IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 26414


Ignore:
Timestamp:
Dec 15, 2009, 6:07:59 PM (16 years ago)
Author:
eugene
Message:

psMetadataItemSupplement errors are now optional

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/20091201/pswarp/src/pswarpDefine.c

    r25741 r26414  
    7777        psFree(readout);                // Drop reference
    7878
    79         psMetadataItemSupplement(target->concepts, source->concepts, "CELL.XBIN");
    80         psMetadataItemSupplement(target->concepts, source->concepts, "CELL.YBIN");
    81         psMetadataItemSupplement(target->concepts, source->concepts, "CELL.XSIZE");
    82         psMetadataItemSupplement(target->concepts, source->concepts, "CELL.YSIZE");
    83         psMetadataItemSupplement(target->concepts, source->concepts, "CELL.XPARITY");
    84         psMetadataItemSupplement(target->concepts, source->concepts, "CELL.YPARITY");
    85         psMetadataItemSupplement(target->concepts, source->concepts, "CELL.X0");
    86         psMetadataItemSupplement(target->concepts, source->concepts, "CELL.Y0");
     79        bool status = false;
     80        psMetadataItemSupplement(&status, target->concepts, source->concepts, "CELL.XBIN");
     81        psMetadataItemSupplement(&status, target->concepts, source->concepts, "CELL.YBIN");
     82        psMetadataItemSupplement(&status, target->concepts, source->concepts, "CELL.XSIZE");
     83        psMetadataItemSupplement(&status, target->concepts, source->concepts, "CELL.YSIZE");
     84        psMetadataItemSupplement(&status, target->concepts, source->concepts, "CELL.XPARITY");
     85        psMetadataItemSupplement(&status, target->concepts, source->concepts, "CELL.YPARITY");
     86        psMetadataItemSupplement(&status, target->concepts, source->concepts, "CELL.X0");
     87        psMetadataItemSupplement(&status, target->concepts, source->concepts, "CELL.Y0");
    8788    }
    8889
Note: See TracChangeset for help on using the changeset viewer.