IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 13, 2006, 4:23:40 PM (20 years ago)
Author:
Paul Price
Message:

Getting code to compile; adding concept read to fpa construction and reading

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/rel10_ifa/psModules/src/astrom/pmFPAConstruct.c

    r6552 r6575  
    44
    55#include "pmFPA.h"
     6#include "pmConcepts.h"
    67#include "pmFPAConstruct.h"
    7 #include "psAdditionals.h"
    88
    99//////////////////////////////////////////////////////////////////////////////////////////////////////////////
     
    147147        while ((cellName = psListGetAndIncrement(cellNamesIter))) {
    148148            pmCell *cell = pmCellAlloc(chip, cellName); // New cell
     149            pmConceptsReadCell(cell, PM_CONCEPT_SOURCE_DEFAULTS, NULL);
    149150            psFree(cell);               // Drop reference
    150151        }
     152        pmConceptsReadChip(chip, PM_CONCEPT_SOURCE_DEFAULTS, NULL);
    151153        psFree(chip);                   // Drop reference
    152154        psFree(cellNamesIter);
    153155    }
    154156    psFree(componentsIter);
     157    pmConceptsReadFPA(fpa, PM_CONCEPT_SOURCE_DEFAULTS, NULL);
    155158
    156159    return fpa;
     
    241244            }
    242245            cell->config = psMemIncrRefCounter(cellData);
     246            pmConceptsReadCell(cell, PM_CONCEPT_SOURCE_CAMERA, NULL);
    243247        }
    244248    }
     
    291295                }
    292296                cell->config = psMemIncrRefCounter(cellData);
     297                pmConceptsReadCell(cell, PM_CONCEPT_SOURCE_CAMERA, NULL);
    293298            }
    294299
     
    332337                }
    333338                cell->config = psMemIncrRefCounter(cellData);
     339                pmConceptsReadCell(cell, PM_CONCEPT_SOURCE_CAMERA, NULL);
    334340            }
    335341
Note: See TracChangeset for help on using the changeset viewer.