IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 15, 2006, 3:04:39 PM (20 years ago)
Author:
eugene
Message:

updating to reflect changes to pmFPAfile APIs

Location:
trunk/psphot/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psphot/src

    • Property svn:ignore
      •  

        old new  
        88psphot
        99psphotTest
        10 errorCodes.c
        1110psphot.loT
        1211psphotErrorCodes.h
  • trunk/psphot/src/psphotImageLoop.c

    r7345 r7582  
    1818   
    1919    // files associated with the science image
    20     if (!pmFPAfileIOChecks (config->files, view, PM_FPA_BEFORE)) {
     20    if (!pmFPAfileIOChecks (config, view, PM_FPA_BEFORE)) {
    2121        psFree(view);
    2222        return false;
     
    2525        psLogMsg ("psphot", 4, "Chip %d: %x %x\n", view->chip, chip->file_exists, chip->process);
    2626        if (! chip->process || ! chip->file_exists) { continue; }
    27         pmFPAfileIOChecks (config->files, view, PM_FPA_BEFORE);
     27        pmFPAfileIOChecks (config, view, PM_FPA_BEFORE);
    2828
    2929        while ((cell = pmFPAviewNextCell (view, input->fpa, 1)) != NULL) {
    3030            psLogMsg ("psphot", 4, "Cell %d: %x %x\n", view->cell, cell->file_exists, cell->process);
    3131            if (! cell->process || ! cell->file_exists) { continue; }
    32             pmFPAfileIOChecks (config->files, view, PM_FPA_BEFORE);
     32            pmFPAfileIOChecks (config, view, PM_FPA_BEFORE);
    3333
    3434            // process each of the readouts
    3535            while ((readout = pmFPAviewNextReadout (view, input->fpa, 1)) != NULL) {
    36                 pmFPAfileIOChecks (config->files, view, PM_FPA_BEFORE);
     36                pmFPAfileIOChecks (config, view, PM_FPA_BEFORE);
    3737                if (! readout->data_exists) { continue; }
    3838
     
    4040                psphotReadout (config, view);
    4141
    42                 pmFPAfileIOChecks (config->files, view, PM_FPA_AFTER);
     42                pmFPAfileIOChecks (config, view, PM_FPA_AFTER);
    4343            }
    44             pmFPAfileIOChecks (config->files, view, PM_FPA_AFTER);
     44            pmFPAfileIOChecks (config, view, PM_FPA_AFTER);
    4545        }
    46         pmFPAfileIOChecks (config->files, view, PM_FPA_AFTER);
     46        pmFPAfileIOChecks (config, view, PM_FPA_AFTER);
    4747    }
    48     pmFPAfileIOChecks (config->files, view, PM_FPA_AFTER);
     48    pmFPAfileIOChecks (config, view, PM_FPA_AFTER);
    4949
    5050    psFree (view);
Note: See TracChangeset for help on using the changeset viewer.