IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 39144 for trunk


Ignore:
Timestamp:
Nov 15, 2015, 7:58:18 PM (11 years ago)
Author:
eugene
Message:

catID and objID are allowed to be -1 (but they are unsigned, so that means 0xffffffff)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/dvomerge/src/dvoverify_utils.c

    r38986 r39144  
    350350      m = catalog.average[i].lensobjOffset;
    351351      for (j = 0; j < catalog.average[i].Nlensobj; j++) {
     352        if ((catalog.lensobj[m+j].objID == 0xffffffff) && (catalog.lensobj[m+j].catID == 0xffffffff)) continue;
    352353        objIDsOK &= (catalog.average[i].objID == catalog.lensobj[m+j].objID);
    353354        catIDsOK &= (catalog.average[i].catID == catalog.lensobj[m+j].catID);
     355        if (!(catalog.average[i].objID == catalog.lensobj[m+j].objID)) {
     356          fprintf (stderr, "!");
     357        }
     358        if (!(catalog.average[i].catID == catalog.lensobj[m+j].catID)) {
     359          fprintf (stderr, "?");
     360        }
    354361      }
    355362    }
Note: See TracChangeset for help on using the changeset viewer.