IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 17108


Ignore:
Timestamp:
Mar 24, 2008, 4:24:50 PM (18 years ago)
Author:
eugene
Message:

skip chips without valid astrometry

Location:
trunk/psastro/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psastro/src/psastroChipAstrom.c

    r16251 r17108  
    3232            psTrace ("psastro", 4, "Cell %d: %x %x\n", view->cell, cell->file_exists, cell->process);
    3333            if (!cell->process || !cell->file_exists) { continue; }
     34            if (!chip->fromFPA) { continue; }
    3435
    3536            // process each of the readouts
  • trunk/psastro/src/psastroMosaicChipAstrom.c

    r12806 r17108  
    1313        psTrace ("psastro", 4, "Chip %d: %x %x\n", view->chip, chip->file_exists, chip->process);
    1414        if (!chip->process || !chip->file_exists) { continue; }
     15        if (!chip->toFPA) { continue; }
    1516       
    1617        while ((cell = pmFPAviewNextCell (view, fpa, 1)) != NULL) {
  • trunk/psastro/src/psastroMosaicSetAstrom.c

    r12806 r17108  
    1212        psTrace ("psastro", 4, "Chip %d: %x %x\n", view->chip, chip->file_exists, chip->process);
    1313        if (!chip->process || !chip->file_exists) { continue; }
     14        if (!chip->toFPA) { continue; }
    1415       
    1516        while ((cell = pmFPAviewNextCell (view, fpa, 1)) != NULL) {
  • trunk/psastro/src/psastroMosaicSetMatch.c

    r15671 r17108  
    3434        psTrace ("psastro", 4, "Chip %d: %x %x\n", view->chip, chip->file_exists, chip->process);
    3535        if (!chip->process || !chip->file_exists) { continue; }
     36        if (!chip->fromFPA) { continue; }
    3637       
    3738        while ((cell = pmFPAviewNextCell (view, fpa, 1)) != NULL) {
Note: See TracChangeset for help on using the changeset viewer.