IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 14, 2019, 2:45:56 PM (7 years ago)
Author:
eugene
Message:

add option to skip MISSING table

File:
1 edited

Legend:

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

    r39926 r40735  
    1010  // always load all of the data (if any exists)
    1111
    12   catalog[0].catflags = DVO_LOAD_AVERAGE | DVO_LOAD_MISSING | DVO_LOAD_SECFILT;
     12  catalog[0].catflags = DVO_LOAD_AVERAGE | DVO_LOAD_SECFILT;
    1313
    1414  if (SKIP_MEASURE) {
     
    1616  } else {
    1717    catalog[0].catflags = catalog[0].catflags | DVO_LOAD_MEASURE;
     18  }
     19
     20  if (SKIP_MISSING) {
     21    catalog[0].catflags = catalog[0].catflags | DVO_SKIP_MISSING;
     22  } else {
     23    catalog[0].catflags = catalog[0].catflags | DVO_LOAD_MISSING;
    1824  }
    1925
Note: See TracChangeset for help on using the changeset viewer.