IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 3, 2008, 10:59:16 AM (18 years ago)
Author:
eugene
Message:

converted pmMoments elements to Mxx, Myy, Mxxx, etc

File:
1 edited

Legend:

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

    r8815 r19879  
    66 *  @author EAM, IfA
    77 *
    8  *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2006-09-15 09:49:01 $
     8 *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2008-10-03 20:59:16 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2929    psTrace("psModules.objects", 3, "---- %s() begin ----\n", __func__);
    3030    pmMoments *tmp = (pmMoments *) psAlloc(sizeof(pmMoments));
    31     tmp->x = 0.0;
    32     tmp->y = 0.0;
    33     tmp->Sx = 0.0;
    34     tmp->Sy = 0.0;
    35     tmp->Sxy = 0.0;
     31    tmp->Mx = 0.0;
     32    tmp->My = 0.0;
     33
     34    tmp->Mxx = 0.0;
     35    tmp->Mxy = 0.0;
     36    tmp->Myy = 0.0;
     37
     38    tmp->Mxxx = 0.0;
     39    tmp->Mxxy = 0.0;
     40    tmp->Mxyy = 0.0;
     41    tmp->Myyy = 0.0;
     42
     43    tmp->Mxxxx = 0.0;
     44    tmp->Mxxxy = 0.0;
     45    tmp->Mxxyy = 0.0;
     46    tmp->Mxyyy = 0.0;
     47    tmp->Myyyy = 0.0;
     48
    3649    tmp->Sum = 0.0;
    3750    tmp->Peak = 0.0;
     
    4255    return(tmp);
    4356}
    44 
Note: See TracChangeset for help on using the changeset viewer.