IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 17, 2008, 12:29:17 PM (18 years ago)
Author:
Paul Price
Message:

API change for pmFPARead(), etc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStats/src/ppStatsCell.c

    r18137 r18168  
    66                   pmFPAview *view,  // View for analysis
    77                   ppStatsData *data,   // The data
    8                    const pmConfig *config // Configuration
     8                   pmConfig *config // Configuration
    99    )
    1010{
     
    4949        // extract from existing headers
    5050        if (cell->hdu) {
    51             if (fits && !pmCellReadHeader(cell, fits, config->database)) {
     51            if (fits && !pmCellReadHeader(cell, fits, config)) {
    5252                psError (PS_ERR_IO, false, "trouble reading cell header\n");
    5353                psFree(cellResults);
     
    6565    // Extract Concept values
    6666    if (psListLength(data->concepts) > 0) {
    67         if (fits && cell->hdu && !pmCellReadHeader(cell, fits, config->database)) {
     67        if (fits && cell->hdu && !pmCellReadHeader(cell, fits, config)) {
    6868            psError (PS_ERR_IO, false, "trouble reading cell header\n");
    6969            psFree(cellResults);
    7070            return PS_EXIT_DATA_ERROR;
    7171        }
    72         pmConceptsReadCell(cell, PM_CONCEPT_SOURCE_ALL, false, config->database);
     72        pmConceptsReadCell(cell, PM_CONCEPT_SOURCE_ALL, false, config);
    7373        p_ppStatsGetMetadata(cellResults, cell->concepts, data->concepts);
    7474    }
     
    7777    if (data->doStats || psListLength(data->summary)) {
    7878        // Read the image pixel data
    79         if (fits && !pmCellRead(cell, fits, config->database)) {
     79        if (fits && !pmCellRead(cell, fits, config)) {
    8080            psError (PS_ERR_IO, false, "trouble reading cell data\n");
    8181            psFree(cellResults);
Note: See TracChangeset for help on using the changeset viewer.