Changeset 18969
- Timestamp:
- Aug 8, 2008, 9:00:55 AM (18 years ago)
- Files:
-
- 4 edited
-
branches/eam_branch_20080719/psModules/src/camera/pmFPAMosaic.c (modified) (2 diffs)
-
trunk/ppImage/src/ppImageDetrendFringe.c (modified) (2 diffs)
-
trunk/ppImage/src/ppImageLoop.c (modified) (1 diff)
-
trunk/ppStats/src/ppStatsChip.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branch_20080719/psModules/src/camera/pmFPAMosaic.c
r15477 r18969 580 580 } 581 581 582 if (cell->readouts->n > 1) { 583 psWarning("Cell contains more than one readout (%ld) --- skipping.\n", cell->readouts->n); 584 return true; 585 } 586 582 587 // Expand the arrays and vectors to handle new data 583 588 long index = images->n; // The index to use … … 703 708 // Add the readout to the array of images to be mosaicked 704 709 psArray *readouts = cell->readouts; // The array of readouts 705 if (readouts->n > 1) {706 psWarning("Cell contains more than one readout (%ld) --- only the first will be mosaicked.\n",707 readouts->n);708 }709 710 pmReadout *readout = readouts->data[0]; // The only readout we'll bother with 710 711 -
trunk/ppImage/src/ppImageDetrendFringe.c
r14000 r18969 93 93 for (int i = 0; i < cells->n; i++) { 94 94 pmCell *cell = cells->data[i]; // Cell of interest 95 96 // XXX for now, skip the video cells (cell->readouts->n > 1) 97 if (cell->readouts->n > 1) { 98 psWarning ("Skipping Video Cell for ppImageDetrendFringe.c:getFringes"); 99 continue; 100 } 101 95 102 fringes->data[i] = psMemIncrRefCounter(psMetadataLookupPtr(NULL, cell->analysis, source)); 96 103 } … … 320 327 } 321 328 329 // XXX for now, skip the video cells (cell->readouts->n > 1) 330 if (cell->readouts->n > 1) { 331 psWarning ("Skipping Video Cell for ppImageDetrendFringeApply"); 332 continue; 333 } 334 322 335 if (!ppImageDetrendFringeGenerate(cell, fringeCell, options)) { 323 336 psError(PS_ERR_UNKNOWN, false, "failed to apply fringe image.\n"); -
trunk/ppImage/src/ppImageLoop.c
r18917 r18969 64 64 } 65 65 66 // XXX for now, skip the video cells (cell->readouts->n > 1) 67 if (cell->readouts->n > 1) { 68 psWarning ("Skipping Video Cell for ppImageDetrendReadout"); 69 continue; 70 } 66 71 67 72 // process each of the readouts -
trunk/ppStats/src/ppStatsChip.c
r18168 r18969 75 75 if ((view->cell >= 0) && (i != view->cell)) continue; 76 76 pmCell *cell = cells->data[i]; // Cell of interest 77 78 // XXX for now, skip the video cells (cell->readouts->n > 1) 79 if (cell->readouts->n > 1) { 80 psWarning ("Skipping Video Cell for ppStatsCell"); 81 continue; 82 } 83 77 84 psExit result = ppStatsCell(chipResults, cell, fits, view, data, config); 78 85 if (result != PS_EXIT_SUCCESS) {
Note:
See TracChangeset
for help on using the changeset viewer.
