IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 13808


Ignore:
Timestamp:
Jun 13, 2007, 3:25:58 PM (19 years ago)
Author:
eugene
Message:

using names consistent with fits keyword lengths

Location:
trunk/psphot/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psphot/src/psphotImageMedian.c

    r13411 r13808  
    280280                                      PS_STAT_MAX);
    281281    psImageStats (statsBck, model->image, NULL, 0);
    282     psMetadataAddF32 (recipe, PS_LIST_TAIL, "SKY_MODEL_MEAN",
     282    psMetadataAddF32 (recipe, PS_LIST_TAIL, "MSKY_MN",
    283283                      PS_META_REPLACE, "sky model mean",          statsBck->sampleMean);
    284     psMetadataAddF32 (recipe, PS_LIST_TAIL, "SKY_MODEL_STDEV",
     284    psMetadataAddF32 (recipe, PS_LIST_TAIL, "MSKY_SIG",
    285285                      PS_META_REPLACE, "sky model stdev",         statsBck->sampleStdev);
    286     psMetadataAddF32 (recipe, PS_LIST_TAIL, "SKY_MODEL_MAX",
     286    psMetadataAddF32 (recipe, PS_LIST_TAIL, "MSKY_MAX",
    287287                      PS_META_REPLACE, "sky model maximum value", statsBck->max);
    288     psMetadataAddF32 (recipe, PS_LIST_TAIL, "SKY_MODEL_MIN",
     288    psMetadataAddF32 (recipe, PS_LIST_TAIL, "MSKY_MIN",
    289289                      PS_META_REPLACE, "sky model minimum value", statsBck->min);
    290     psMetadataAddS32 (recipe, PS_LIST_TAIL, "SKY_MODEL_NX",
     290    psMetadataAddS32 (recipe, PS_LIST_TAIL, "MSKY_NX",
    291291                      PS_META_REPLACE, "sky model size (x)",      model->image->numCols);
    292     psMetadataAddS32 (recipe, PS_LIST_TAIL, "SKY_MODEL_NY",
     292    psMetadataAddS32 (recipe, PS_LIST_TAIL, "MSKY_NY",
    293293                      PS_META_REPLACE, "sky model size (y)",      model->image->numRows);
    294294    psLogMsg ("psphot", PS_LOG_INFO, "background sky : min %f mean %f max %f stdev %f",
  • trunk/psphot/src/psphotOutput.c

    r13411 r13808  
    142142
    143143    // sky background model statistics
    144     psMetadataItemSupplement (header, recipe, "SKY_MEAN");
    145     psMetadataItemSupplement (header, recipe, "SKY_SIG");
    146     psMetadataItemSupplement (header, recipe, "SKY_MIN");
    147     psMetadataItemSupplement (header, recipe, "SKY_MAX");
    148     psMetadataItemSupplement (header, recipe, "SKY_NX");
    149     psMetadataItemSupplement (header, recipe, "SKY_NY");
     144    psMetadataItemSupplement (header, recipe, "MSKY_MN");
     145    psMetadataItemSupplement (header, recipe, "MSKY_SIG");
     146    psMetadataItemSupplement (header, recipe, "MSKY_MIN");
     147    psMetadataItemSupplement (header, recipe, "MSKY_MAX");
     148    psMetadataItemSupplement (header, recipe, "MSKY_NX");
     149    psMetadataItemSupplement (header, recipe, "MSKY_NY");
    150150
    151151    // XXX : don't require any of these about values to exist
Note: See TracChangeset for help on using the changeset viewer.