IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 6380


Ignore:
Timestamp:
Feb 7, 2006, 9:16:49 PM (20 years ago)
Author:
magnier
Message:

removed variables named "class", added typedef to pmPSFtryMaskValues

Location:
branches/eam_rel9_p0/psModules/src/objects
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_rel9_p0/psModules/src/objects/pmObjects.c

    r6377 r6380  
    66 *  @author EAM, IfA: significant modifications.
    77 *
    8  *  @version $Revision: 1.5.4.6 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2006-02-08 06:10:29 $
     8 *  @version $Revision: 1.5.4.7 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2006-02-08 07:16:49 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2525                    psS32 y,
    2626                    psF32 counts,
    27                     pmPeakType class)
     27                    pmPeakType type)
    2828{
    2929    psTrace(__func__, 3, "---- %s() begin ----\n", __func__);
     
    3232    tmp->y = y;
    3333    tmp->counts = counts;
    34     tmp->class = class;
     34    tmp->type = type;
    3535
    3636    psTrace(__func__, 3, "---- %s() end ----\n", __func__);
     
    12061206        pmSource *tmpSrc = (pmSource *) sources->data[i];
    12071207
    1208         tmpSrc->peak->class = 0;
     1208        tmpSrc->peak->type = 0;
    12091209
    12101210        psF32 sigX = tmpSrc->moments->Sx;
  • branches/eam_rel9_p0/psModules/src/objects/pmObjects.h

    r6183 r6380  
    1010 *  @author GLG, MHPCC
    1111 *
    12  *  @version $Revision: 1.4.4.6 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2006-01-22 21:12:20 $
     12 *  @version $Revision: 1.4.4.7 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2006-02-08 07:16:49 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    7474    int y;                              ///< Y-coordinate of peak pixel.
    7575    float counts;                       ///< Value of peak pixel (above sky?).
    76     pmPeakType class;                   ///< Description of peak.
     76    pmPeakType type;                   ///< Description of peak.
    7777}
    7878pmPeak;
     
    219219    int y,    ///< Col-coordinate in image space
    220220    float counts,   ///< The value of the peak pixel
    221     pmPeakType class   ///< The type of peak pixel
     221    pmPeakType type   ///< The type of peak pixel
    222222);
    223223
  • branches/eam_rel9_p0/psModules/src/objects/pmPSFtry.h

    r5992 r6380  
    66 *  @author EAM, IfA
    77 *
    8  *  @version $Revision: 1.2.4.2 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2006-01-15 18:23:13 $
     8 *  @version $Revision: 1.2.4.3 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2006-02-08 07:16:49 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    6363 *
    6464 */
    65 enum {
     65typedef enum {
    6666    PSFTRY_MASK_CLEAR    = 0x00,        ///< Add comment.
    6767    PSFTRY_MASK_OUTLIER  = 0x01,        ///< 1: outlier in psf polynomial fit (provided by psPolynomials)
Note: See TracChangeset for help on using the changeset viewer.