IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 9, 2007, 9:03:20 PM (19 years ago)
Author:
magnier
Message:

fixed missing zero point

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/objects/pmSourceIO.c

    r11687 r12398  
    33 *  @author EAM, IfA
    44 *
    5  *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
    6  *  @date $Date: 2007-02-07 23:58:17 $
     5 *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
     6 *  @date $Date: 2007-03-10 07:03:20 $
    77 *
    88 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    298298            }
    299299
    300             // save psphot and psastro metadata in the image (not table) header
     300            // save psphot and psastro metadata in the image and table headers
    301301            updates = psMetadataLookupPtr (&status, readout->analysis, "PSPHOT.HEADER");
    302302            if (updates) {
    303303                psMetadataCopy (outhead, updates);
    304304            }
    305 
    306305            updates = psMetadataLookupPtr (&status, readout->analysis, "PSASTRO.HEADER");
    307306            if (updates) {
     
    317316        // create a header to hold the output data
    318317        outhead = psMetadataAlloc ();
     318
     319        // save psphot and psastro metadata in the image and table headers
     320        // XXX this is a bit silly: we are duplicating these because I'm not sure which
     321        // I need to keep for multi-readout images...
     322        updates = psMetadataLookupPtr (&status, readout->analysis, "PSPHOT.HEADER");
     323        if (updates) {
     324            psMetadataCopy (outhead, updates);
     325        }
     326        updates = psMetadataLookupPtr (&status, readout->analysis, "PSASTRO.HEADER");
     327        if (updates) {
     328            psMetadataCopy (outhead, updates);
     329        }
    319330
    320331        exttype = psStringCopy ("SMPDATA");  // XXX derive this from the recipes
Note: See TracChangeset for help on using the changeset viewer.