IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 14, 2006, 11:58:44 AM (20 years ago)
Author:
eugene
Message:

renamed config to recipe in lower-level functions, added pixel weights to pmSource, other cleanups

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psphot/src/psphotImageLoop.c

    r6727 r6862  
    22
    33// XXX where do we load optional mask and weight input images?
    4 
    54bool psphotImageLoop (pmConfig *config) {
    65
     
    2322    while ((chip = pmFPAviewNextChip (view, input->fpa, 1)) != NULL) {
    2423        psLogMsg ("psphot", 4, "Chip %d: %x %x\n", view->chip, chip->file_exists, chip->process);
    25         if (! chip->process) { continue; }
    26         if (! chip->file_exists) { continue; }
     24        if (! chip->process || ! chip->file_exists) { continue; }
    2725        pmFPAfileIOChecks (config->files, view, PM_FPA_BEFORE);
    2826
    2927        while ((cell = pmFPAviewNextCell (view, input->fpa, 1)) != NULL) {
    3028            psLogMsg ("psphot", 4, "Cell %d: %x %x\n", view->cell, cell->file_exists, cell->process);
    31             if (! cell->process) { continue; }
    32             if (! cell->file_exists) { continue; }
     29            if (! cell->process || ! cell->file_exists) { continue; }
    3330            pmFPAfileIOChecks (config->files, view, PM_FPA_BEFORE);
    3431
     
    6360// PSPHOT.PSF     : sample PSF images
    6461
    65 
    66 /**
    67 
    68 filename | pmFPAfile  | pmFPA  | pmFPAview
    69 chip00.f | PSPHOT.IN  | input  | view
    70 chip01.f | PSPHOT.IN  | input  | view
    71 chip02.f | PSPHOT.IN  | input  | view
    72 chip03.f | PSPHOT.IN  | input  | view
    73 
    74 out00.f  | PSPHOT.OUT | input  | view
    75 out01.f  | PSPHOT.OUT | input  | view
    76 out02.f  | PSPHOT.OUT | input  | view
    77 out03.f  | PSPHOT.OUT | input  | view
    78 
    79 obj00.f  | PSPHOT.OBJ | input  | view
    80 obj01.f  | PSPHOT.OBJ | input  | view
    81 obj02.f  | PSPHOT.OBJ | input  | view
    82 obj03.f  | PSPHOT.OBJ | input  | view
    83 
    84 bin00.f  | PSPHOT.BIN | binned | view
    85 bin01.f  | PSPHOT.BIN | binned | view
    86 bin02.f  | PSPHOT.BIN | binned | view
    87 bin03.f  | PSPHOT.BIN | binned | view
    88 
    89 mosaic.f | PSPHOT.MOS | mosaic | view
    90 
    91 **/
Note: See TracChangeset for help on using the changeset viewer.