IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 28, 2008, 11:48:49 AM (18 years ago)
Author:
eugene
Message:

fixed errors in recent API mods

Location:
trunk/psModules/src/objects
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/objects/pmSource.c

    r17396 r17832  
    66 *  @author EAM, IfA: significant modifications.
    77 *
    8  *  @version $Revision: 1.52 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2008-04-08 18:35:38 $
     8 *  @version $Revision: 1.53 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2008-05-28 21:48:49 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    875875        psF32 **target = source->pixels->data.F32;
    876876        if (mode & PM_MODEL_OP_NOISE) {
     877            // XXX need to scale by the gain...
    877878            target = source->weight->data.F32;
    878879        }
  • trunk/psModules/src/objects/pmSourceIO.c

    r17826 r17832  
    33 *  @author EAM, IfA
    44 *
    5  *  @version $Revision: 1.58 $ $Name: not supported by cvs2svn $
    6  *  @date $Date: 2008-05-28 18:57:01 $
     5 *  @version $Revision: 1.59 $ $Name: not supported by cvs2svn $
     6 *  @date $Date: 2008-05-28 21:48:49 $
    77 *
    88 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    886886
    887887    if (view->chip == -1) {
    888         bool exists = pmFPACheckDataStatusForSources (fpa, name);
     888        bool exists = pmFPACheckDataStatusForSources (fpa, file->name);
    889889        return exists;
    890890    }
     
    896896
    897897    if (view->cell == -1) {
    898         bool exists = pmChipCheckDataStatusForSources (chip, name);
     898        bool exists = pmChipCheckDataStatusForSources (chip, file->name);
    899899        return exists;
    900900    }
     
    906906
    907907    if (view->readout == -1) {
    908         bool exists = pmCellCheckDataStatusForSources (cell, name);
     908        bool exists = pmCellCheckDataStatusForSources (cell, file->name);
    909909        return exists;
    910910    }
  • trunk/psModules/src/objects/pmSourceIO.h

    r17396 r17832  
    44 * @author EAM, IfA; GLG, MHPCC
    55 *
    6  * @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
    7  * @date $Date: 2008-04-08 18:35:38 $
     6 * @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
     7 * @date $Date: 2008-05-28 21:48:49 $
    88 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii
    99 *
     
    5757
    5858bool pmFPAviewCheckDataStatusForSources (const pmFPAview *view, const pmFPAfile *file);
    59 bool pmFPACheckDataStatusForSources (const pmFPA *fpa);
    60 bool pmChipCheckDataStatusForSources (const pmChip *chip);
    61 bool pmCellCheckDataStatusForSources (const pmCell *cell);
    62 bool pmReadoutCheckDataStatusForSources (const pmReadout *readout);
     59bool pmFPACheckDataStatusForSources (const pmFPA *fpa, const char *name);
     60bool pmChipCheckDataStatusForSources (const pmChip *chip, const char *name);
     61bool pmCellCheckDataStatusForSources (const pmCell *cell, const char *name);
     62bool pmReadoutCheckDataStatusForSources (const pmReadout *readout, const char *name);
    6363
    6464/// @}
Note: See TracChangeset for help on using the changeset viewer.