IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 12, 2006, 4:49:23 PM (20 years ago)
Author:
eugene
Message:

substantial work to make formats all work, added error checking

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppImage/src/ppImageLoop.c

    r7522 r7531  
    2020
    2121    while ((chip = pmFPAviewNextChip (view, input->fpa, 1)) != NULL) {
    22         psLogMsg ("psphot", 4, "Chip %d: %x %x\n", view->chip, chip->file_exists, chip->process);
     22        psLogMsg ("ppImageLoop", 4, "Chip %d: %x %x\n", view->chip, chip->file_exists, chip->process);
    2323        if (!chip->process || !chip->file_exists) { continue; }
    2424        pmFPAfileIOChecks (config->files, view, PM_FPA_BEFORE);
    2525
    2626        while ((cell = pmFPAviewNextCell (view, input->fpa, 1)) != NULL) {
    27             psLogMsg ("psphot", 4, "Cell %d: %x %x\n", view->cell, cell->file_exists, cell->process);
     27            psLogMsg ("ppImageLoop", 4, "Cell %d: %x %x\n", view->cell, cell->file_exists, cell->process);
    2828            if (!cell->process || !cell->file_exists) { continue; }
    2929            pmFPAfileIOChecks (config->files, view, PM_FPA_BEFORE);
     
    4848
    4949        // we perform photometry on the readouts of this chip in the output
    50         ppImagePhotom (config, view);
     50        if (options->doPhotom) ppImagePhotom (config, view);
    5151
    5252        pmFPAfileIOChecks (config->files, view, PM_FPA_AFTER);
     
    6262    }
    6363
    64     // ppImageAstrom (config);
     64    // we perform astrometry on all chips after sources have been detected
     65    if (options->doAstrom) ppImageAstrom (config);
    6566   
    6667    // ppImageFPAMosaic (config, view);
Note: See TracChangeset for help on using the changeset viewer.