- Timestamp:
- Feb 3, 2011, 9:34:11 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20101205/Ohana/src/relastro/src/StarMaps.c
r29001 r30478 79 79 starmap[N].stars[ybin*NX_MAP + xbin] ++; 80 80 } 81 MARKTIME("assign stars to starmap bins: %f sec\n", dtime);81 if (VERBOSE2) { MARKTIME("assign stars to starmap bins: %f sec\n", dtime); } 82 82 83 83 return (TRUE); … … 117 117 } 118 118 119 if (VERBOSE ) fprintf (stderr, "starmap: %d points for image %s\n", starmap[i].Npoints, images[i].name);119 if (VERBOSE2) fprintf (stderr, "starmap: %d points for image %s\n", starmap[i].Npoints, images[i].name); 120 120 } 121 121 … … 145 145 } 146 146 147 if (VERBOSE ) fprintf (stderr, "max deviations for %s using %d pts : %f, %f\n", images[N].name, starmap[N].Npoints, dLmax, dMmax);147 if (VERBOSE2) fprintf (stderr, "max deviations for %s using %d pts : %f, %f\n", images[N].name, starmap[N].Npoints, dLmax, dMmax); 148 148 149 if (dLmax > DPOS_MAX) return (FALSE); 150 if (dMmax > DPOS_MAX) return (FALSE); 149 if (dLmax > DPOS_MAX) { 150 if (VERBOSE) fprintf (stderr, "max deviations for %s using %d pts : %f, %f\n", images[N].name, starmap[N].Npoints, dLmax, dMmax); 151 return (FALSE); 152 } 153 if (dMmax > DPOS_MAX) { 154 if (VERBOSE) fprintf (stderr, "max deviations for %s using %d pts : %f, %f\n", images[N].name, starmap[N].Npoints, dLmax, dMmax); 155 return (FALSE); 156 } 151 157 return (TRUE); 152 158 }
Note:
See TracChangeset
for help on using the changeset viewer.
