IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 5010


Ignore:
Timestamp:
Sep 12, 2005, 1:27:48 PM (21 years ago)
Author:
drobbin
Message:

set PS_META_META = PS_DATA_METADATA

Location:
trunk/psLib
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/types/psMetadata.h

    r5000 r5010  
    1111*  @author Ross Harman, MHPCC
    1212*
    13 *  @version $Revision: 1.62 $ $Name: not supported by cvs2svn $
    14 *  @date $Date: 2005-09-12 21:36:54 $
     13*  @version $Revision: 1.63 $ $Name: not supported by cvs2svn $
     14*  @date $Date: 2005-09-12 23:27:48 $
    1515*
    1616*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5252    PS_META_UNKNOWN,                   ///< Other data (Stored as item.data.V).
    5353    PS_META_MULTI,                     ///< Used internally, do not create an metadata item of this type.
    54     PS_META_META,                      ///< Metadata data (Stored as item.data.md).
     54    PS_META_META = PS_DATA_METADATA,   ///< Metadata data (Stored as item.data.md).
    5555    PS_META_ARRAY,                     ///< Array data (Stored as item.data.V).
    5656    PS_META_TIME                       ///< psTime data (Stored as item.data.V).
  • trunk/psLib/src/types/psMetadataConfig.c

    r5007 r5010  
    1010*  @author Eric Van Alst, MHPCC
    1111*
    12 *  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2005-09-12 23:04:59 $
     12*  @version $Revision: 1.41 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2005-09-12 23:27:48 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    11851185        if ( type == 65538)
    11861186            type = PS_DATA_VECTOR;
    1187         if ( type == 65549)
     1187        if ( type == 65551)
    11881188            type = PS_DATA_TIME;
    11891189        if ( item->type == PS_META_META)
  • trunk/psLib/src/xml/psXML.c

    r5003 r5010  
    1010*  @author David Robbins, MHPCC
    1111*
    12 *  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2005-09-12 22:25:27 $
     12*  @version $Revision: 1.41 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2005-09-12 23:27:48 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    7272        if ( type == 65538)
    7373            type = PS_DATA_VECTOR;
    74         if ( type == 65547)
    75             type = PS_DATA_METADATA;
    76         if ( type == 65549)
     74        //        if ( type == 65547)
     75        //            type = PS_DATA_METADATA;
     76        if ( type == 65551)
    7777            type = PS_DATA_TIME;
    7878        switch (type) {
  • trunk/psLib/test/xml/tst_psXML.c

    r5005 r5010  
    1515*  @author  Dave Robbins, MHPCC
    1616*
    17 *  @version $Revision: 1.5 $  $Name: not supported by cvs2svn $
    18 *  @date  $Date: 2005-09-12 22:26:30 $
     17*  @version $Revision: 1.6 $  $Name: not supported by cvs2svn $
     18*  @date  $Date: 2005-09-12 23:27:48 $
    1919*
    2020*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    121121        printf("Key Type:  F64      Key Value: %15.3f  ", metadataItem->data.F64);
    122122        break;
    123     case PS_META_META:
     123    case PS_DATA_METADATA:
    124124        printf("Key Type:  METADATA    ");
    125125        break;
Note: See TracChangeset for help on using the changeset viewer.