IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 17191


Ignore:
Timestamp:
Mar 28, 2008, 3:25:13 PM (18 years ago)
Author:
eugene
Message:

do not complain if NSTARS != Nrows

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/addstar/src/ReadStarsFITS.c

    r16810 r17191  
    4444    exit (1);
    4545  }
    46   if (*nstars != Nstars) {
    47     fprintf (stderr, "WARNING: inconsistent number of stars? %d vs %d\n", *nstars, Nstars);
    48   }
    49   *nstars = Nstars;
     46  // Nstars is not necessarily == *nstars (The former is the number of detections, the
     47  // latter are the 'good' detections reported by the photometry system.
     48  *nstars = Nstars;
     49
    5050  return stars;
    5151}
Note: See TracChangeset for help on using the changeset viewer.