IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 38590


Ignore:
Timestamp:
Jul 15, 2015, 10:50:10 AM (11 years ago)
Author:
eugene
Message:

make read_uncompressed globally visible

Location:
branches/eam_branches/ipp-20150625/Ohana/src/libdvo
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20150625/Ohana/src/libdvo/include/dvo.h

    r38553 r38590  
    840840int   gfits_db_free                PROTO((FITS_DB *db));
    841841
     842int gfits_fread_uncompressed (Catalog *catalog, FTable *ftable, char *nativeOrder, char VERBOSE);
     843
    842844char *libdvo_version (void);
    843845
  • branches/eam_branches/ipp-20150625/Ohana/src/libdvo/src/dvo_convert.c

    r38553 r38590  
    195195  if (!strcmp (extname, "DVO_MEASURE_PS1_V4") && (ftable[0].header[0].Naxis[0] == 176)) {
    196196    fprintf (stderr, "reading alt PS1_V4 format\n");
     197    myAssert (!nativeBytes, "need to implement optional swap");
    197198    Measure_PS1_V4alt *tmpMeasure;
    198199    tmpMeasure = gfits_table_get_Measure_PS1_V4alt (ftable, Nmeasure, NULL);
     
    211212  if (!strcmp (extname, "DVO_MEASURE_PS1_V5") && (ftable[0].header[0].Naxis[0] == 232)) {
    212213    fprintf (stderr, "reading alt PS1_V5 format\n");
     214    myAssert (!nativeBytes, "need to implement optional swap");
    213215    Measure_PS1_V5alt *tmpMeasure;
    214216    tmpMeasure = gfits_table_get_Measure_PS1_V5alt (ftable, Nmeasure, NULL);
Note: See TracChangeset for help on using the changeset viewer.