- Timestamp:
- Dec 6, 2012, 6:32:19 PM (14 years ago)
- Location:
- branches/czw_branch/20120906/psModules
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
src/objects (modified) (1 prop)
-
src/objects/pmMoments.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/czw_branch/20120906/psModules
- Property svn:mergeinfo changed
/branches/eam_branches/ipp-20120905/psModules (added) merged: 34428,34451,34467,34568,34575,34730,34735,34747
- Property svn:mergeinfo changed
-
branches/czw_branch/20120906/psModules/src/objects
- Property svn:ignore
-
old new 7 7 pmSourceIO_CMF_PS1_V1.c 8 8 pmSourceIO_CMF_PS1_V2.c 9 pmSourceIO_CMF_PS1_V2.v1.c 9 10 pmSourceIO_CMF_PS1_V3.c 11 pmSourceIO_CMF_PS1_V3.v1.c 12 pmSourceIO_CMF_PS1_V1.v1.c 10 13 pmSourceIO_CMF_PS1_V4.c 11 14 pmSourceIO_CMF_PS1_SV1.c 15 pmSourceIO_CMF_PS1_SV2.c 12 16 pmSourceIO_CMF_PS1_DV1.c 13 17 pmSourceIO_CMF_PS1_DV2.c 18 pmSourceIO_CMF_PS1_DV3.c 19
-
- Property svn:ignore
-
branches/czw_branch/20120906/psModules/src/objects/pmMoments.c
r32347 r34772 30 30 pmMoments *tmp = (pmMoments *) psAlloc(sizeof(pmMoments)); 31 31 32 tmp->Mrf = 0.0;33 tmp->Mrh = 0.0;32 tmp->Mrf = NAN; 33 tmp->Mrh = NAN; 34 34 35 tmp->KronCore = 0.0;36 tmp->KronCoreErr = 0.0;35 tmp->KronCore = NAN; 36 tmp->KronCoreErr = NAN; 37 37 38 tmp->KronFlux = 0.0;39 tmp->KronFluxErr = 0.0;38 tmp->KronFlux = NAN; 39 tmp->KronFluxErr = NAN; 40 40 41 tmp->KronFinner = 0.0;42 tmp->KronFouter = 0.0;41 tmp->KronFinner = NAN; 42 tmp->KronFouter = NAN; 43 43 44 tmp->KronFluxPSF = 0.0;45 tmp->KronFluxPSFErr = 0.0;46 tmp->KronRadiusPSF = 0.0;44 tmp->KronFluxPSF = NAN; 45 tmp->KronFluxPSFErr = NAN; 46 tmp->KronRadiusPSF = NAN; 47 47 48 tmp->Mx = 0.0;49 tmp->My = 0.0;48 tmp->Mx = NAN; 49 tmp->My = NAN; 50 50 51 tmp->Mxx = 0.0;52 tmp->Mxy = 0.0;53 tmp->Myy = 0.0;51 tmp->Mxx = NAN; 52 tmp->Mxy = NAN; 53 tmp->Myy = NAN; 54 54 55 tmp->Mxxx = 0.0;56 tmp->Mxxy = 0.0;57 tmp->Mxyy = 0.0;58 tmp->Myyy = 0.0;55 tmp->Mxxx = NAN; 56 tmp->Mxxy = NAN; 57 tmp->Mxyy = NAN; 58 tmp->Myyy = NAN; 59 59 60 tmp->Mxxxx = 0.0;61 tmp->Mxxxy = 0.0;62 tmp->Mxxyy = 0.0;63 tmp->Mxyyy = 0.0;64 tmp->Myyyy = 0.0;60 tmp->Mxxxx = NAN; 61 tmp->Mxxxy = NAN; 62 tmp->Mxxyy = NAN; 63 tmp->Mxyyy = NAN; 64 tmp->Myyyy = NAN; 65 65 66 tmp->Sum = 0.0;67 tmp->Peak = 0.0;68 tmp->Sky = 0.0;66 tmp->Sum = NAN; 67 tmp->Peak = NAN; 68 tmp->Sky = NAN; 69 69 tmp->nPixels = 0; 70 70 tmp->SN = 0;
Note:
See TracChangeset
for help on using the changeset viewer.
