Changeset 18137 for trunk/ppStats
- Timestamp:
- Jun 13, 2008, 4:16:47 PM (18 years ago)
- Location:
- trunk/ppStats/src
- Files:
-
- 3 edited
-
ppStatsCell.c (modified) (2 diffs)
-
ppStatsChip.c (modified) (2 diffs)
-
ppStatsLoop.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppStats/src/ppStatsCell.c
r14149 r18137 49 49 // extract from existing headers 50 50 if (cell->hdu) { 51 if (fits && !pmCellReadHeader(cell, fits )) {51 if (fits && !pmCellReadHeader(cell, fits, config->database)) { 52 52 psError (PS_ERR_IO, false, "trouble reading cell header\n"); 53 53 psFree(cellResults); … … 65 65 // Extract Concept values 66 66 if (psListLength(data->concepts) > 0) { 67 if (fits && cell->hdu && !pmCellReadHeader(cell, fits )) {67 if (fits && cell->hdu && !pmCellReadHeader(cell, fits, config->database)) { 68 68 psError (PS_ERR_IO, false, "trouble reading cell header\n"); 69 69 psFree(cellResults); -
trunk/ppStats/src/ppStatsChip.c
r14561 r18137 38 38 // extract from existing headers 39 39 if (chip->hdu) { 40 if (fits && !pmChipReadHeader(chip, fits )) {40 if (fits && !pmChipReadHeader(chip, fits, config->database)) { 41 41 psError (PS_ERR_IO, false, "trouble reading chip header\n"); 42 42 psFree(chipResults); … … 54 54 // Extract Concept values 55 55 if (psListLength(data->concepts) > 0) { 56 if (fits && chip->hdu && !pmChipReadHeader(chip, fits )) {56 if (fits && chip->hdu && !pmChipReadHeader(chip, fits, config->database)) { 57 57 psError (PS_ERR_IO, false, "trouble reading chip header\n"); 58 58 psFree(chipResults); -
trunk/ppStats/src/ppStatsLoop.c
r14003 r18137 21 21 // Iterate through the FPA 22 22 if (psListLength(data->headers) > 0 && fpa->hdu) { 23 if (fits && !pmFPAReadHeader(fpa, fits )) {23 if (fits && !pmFPAReadHeader(fpa, fits, config->database)) { 24 24 psError(PS_ERR_IO, false, "Unable to read header for FPA."); 25 25 psFree(view); … … 32 32 } 33 33 if (psListLength(data->concepts) > 0) { 34 if (fits && fpa->hdu && !pmFPAReadHeader(fpa, fits )) {34 if (fits && fpa->hdu && !pmFPAReadHeader(fpa, fits, config->database)) { 35 35 psError(PS_ERR_IO, false, "Unable to read header for FPA."); 36 36 psFree(view);
Note:
See TracChangeset
for help on using the changeset viewer.
