IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 30, 2009, 5:20:29 PM (17 years ago)
Author:
watersc1
Message:

Finished up my edits to the detrend cleanup, and some changes to my
copy of burntool and the pslib astrometry. Detrend cleanup has not
been tested yet. That's up next.

Location:
branches/czw_branch/cleanup
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/czw_branch/cleanup

  • branches/czw_branch/cleanup/ppMerge/src/ppMergeScaleZero.c

    r23463 r24951  
    6767        pmChip *chip;                   ///< Chip of interest
    6868        while ((chip = pmFPAviewNextChip(view, fpa, 1))) {
    69             if (!chip->file_exists) {
    70                 continue;
    71             }
     69            if (!chip->process || !chip->file_exists) {
     70                continue;
     71            }
    7272            if (!pmFPAfileIOChecks(config, view, PM_FPA_BEFORE)) {
    7373                goto ERROR;
     
    7676            pmCell *cell;               ///< Cell of interest
    7777            while ((cell = pmFPAviewNextCell(view, fpa, 1))) {
    78                 if (!cell->file_exists) {
    79                     continue;
    80                 }
     78                if (!cell->process || !cell->file_exists) {
     79                    continue;
     80                }
    8181                if (!pmFPAfileIOChecks(config, view, PM_FPA_BEFORE)) {
    8282                    goto ERROR;
     
    8787                }
    8888
     89                // skip cells with video data
    8990                if (cell->readouts->n > 1) {
    90                     psError(PS_ERR_BAD_PARAMETER_VALUE, true,
    91                             "File %d chip %d cell %d contains more than one readout (%ld)",
    92                             i, view->chip, view->cell, cell->readouts->n);
    93                     goto ERROR;
     91                    // psError(PS_ERR_BAD_PARAMETER_VALUE, true, "File %d chip %d cell %d contains more than one readout (%ld)", i, view->chip, view->cell, cell->readouts->n);
     92                    // goto ERROR;
     93                  psWarning("File %d chip %d cell %d contains more than one readout (%ld), skipping", i, view->chip, view->cell, cell->readouts->n);
     94                  continue;
    9495                }
    9596                pmReadout *readout = cell->readouts->data[0]; ///< Readout of interest
Note: See TracChangeset for help on using the changeset viewer.