IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 23647


Ignore:
Timestamp:
Mar 31, 2009, 5:26:21 PM (17 years ago)
Author:
Paul Price
Message:

Fixing following API change in psastro.

Location:
branches/pap/ppImage/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/pap/ppImage/src/ppImage.h

    r23580 r23647  
    147147
    148148bool ppImagePhotom(psMetadata *stats, pmConfig *config, pmFPAview *view);
    149 bool ppImageAstrom(pmConfig *config);
     149bool ppImageAstrom(pmConfig *config, psMetadata *stats);
    150150bool ppImageAddstar(pmConfig *config);
    151151
  • branches/pap/ppImage/src/ppImageAstrom.c

    r16084 r23647  
    77// this function is mostly equivalent to the top-level of psastro, with some
    88// modifications since the data has already been loaded.
    9 bool ppImageAstrom (pmConfig *config) {
     9bool ppImageAstrom (pmConfig *config, psMetadata *stats) {
    1010
    1111    bool status;
     
    2727    }
    2828
    29     if (!psastroAnalysis (config)) {
     29    if (!psastroAnalysis(config, stats)) {
    3030        psError (PSASTRO_ERR_UNKNOWN, false, "failure in psastro analysis\n");
    3131        return false;
  • branches/pap/ppImage/src/ppImageLoop.c

    r23580 r23647  
    205205    // this also performs the psastro file IO
    206206    if (options->doAstromChip || options->doAstromMosaic) {
    207         if (!ppImageAstrom(config)) {
     207        if (!ppImageAstrom(config, stats)) {
    208208            ESCAPE("error running astrometry.");
    209209        }
Note: See TracChangeset for help on using the changeset viewer.