Changeset 9574 for trunk/psastro/src/psastroMosaicSetMatch.c
- Timestamp:
- Oct 13, 2006, 5:10:34 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psastro/src/psastroMosaicSetMatch.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psastro/src/psastroMosaicSetMatch.c
r9374 r9574 16 16 // this loop selects the matched stars for all chips 17 17 while ((chip = pmFPAviewNextChip (view, fpa, 1)) != NULL) { 18 psTrace ( __func__, 4, "Chip %d: %x %x\n", view->chip, chip->file_exists, chip->process);18 psTrace ("psastro", 4, "Chip %d: %x %x\n", view->chip, chip->file_exists, chip->process); 19 19 if (!chip->process || !chip->file_exists) { continue; } 20 20 21 21 while ((cell = pmFPAviewNextCell (view, fpa, 1)) != NULL) { 22 psTrace ( __func__, 4, "Cell %d: %x %x\n", view->cell, cell->file_exists, cell->process);22 psTrace ("psastro", 4, "Cell %d: %x %x\n", view->cell, cell->file_exists, cell->process); 23 23 if (!cell->process || !cell->file_exists) { continue; } 24 24 … … 35 35 psArray *refstars = psMetadataLookupPtr (NULL, readout->analysis, "PSASTRO.REFSTARS"); 36 36 if (refstars == NULL) { continue; } 37 psTrace ( __func__, 4, "Trying %ld refstars\n", refstars->n);37 psTrace ("psastro", 4, "Trying %ld refstars\n", refstars->n); 38 38 39 39 // use small radius to match stars (assume starting astrometry is good) 40 40 // XXX should this take a (double radius)? 41 41 psArray *matches = pmAstromRadiusMatchChip (rawstars, refstars, recipe); 42 psTrace ( __func__, 4, "Matched %ld refstars\n", matches->n);42 psTrace ("psastro", 4, "Matched %ld refstars\n", matches->n); 43 43 44 44 sprintf (name, "raw.%02d.dat", view->chip);
Note:
See TracChangeset
for help on using the changeset viewer.
