IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 39343


Ignore:
Timestamp:
Feb 11, 2016, 11:33:17 AM (10 years ago)
Author:
eugene
Message:

add some verbosity

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/libdvo/src/ImageOps.c

    r37807 r39343  
    5353  n = 0;
    5454  for (i = 0; i < Nimage; i++) {
    55     if (TimeSelect && ((image[i].tzero < tzero) || (image[i].tzero+image[i].trate*image[i].NY > tzero + trange))) continue;
     55    if (i != n) {
     56      fprintf (stderr, "skipped %s\n", image[subset[n]].name);
     57    }
     58    if (TimeSelect && ((image[i].tzero < tzero) || (image[i].tzero+image[i].trate*image[i].NY > tzero + trange))) {
     59      fprintf (stderr, "skipping %s\n", image[i].name);
     60      continue;
     61    }
    5662    if (selection->useDisplay) {
    5763      // first check if region center is in image
     
    8591            corners touching the region **/
    8692      }
     93      fprintf (stderr, "skipping %s\n", image[i].name);
    8794      continue;
    8895    }
     
    111118            corners touching the region **/
    112119      }
     120      fprintf (stderr, "skipping %s\n", image[i].name);
    113121      continue;
    114122    }
Note: See TracChangeset for help on using the changeset viewer.