IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 20754


Ignore:
Timestamp:
Nov 13, 2008, 11:09:45 PM (17 years ago)
Author:
Paul Price
Message:

Adding trace message.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStack/src/ppStackMatch.c

    r20753 r20754  
    8282        coords->data.F32[0] = source->peak->xf;
    8383        coords->data.F32[1] = source->peak->yf;
    84         if (psTreeWithin(tree, coords, exclusion) == 1) {
     84
     85        long numWithin = psTreeWithin(tree, coords, exclusion); // Number within exclusion zone
     86        psTrace("ppStack", 5, "Source at %.0f,%.0f has %ld sources in exclusion zone",
     87                coords->data.F32[0], coords->data.F32[1], numWithin);
     88        if (numWithin == 1) {
    8589            // Only itself inside the exclusion zone
    8690            filtered = psArrayAdd(filtered, filtered->n, source);
Note: See TracChangeset for help on using the changeset viewer.