Index: trunk/psphot/src/psphotSummaryPlots.c
===================================================================
--- trunk/psphot/src/psphotSummaryPlots.c	(revision 13477)
+++ trunk/psphot/src/psphotSummaryPlots.c	(revision 19881)
@@ -61,6 +61,6 @@
 	if (source->moments == NULL) continue;
     
-	xFaint->data.F32[nF] = source->moments->Sx;
-	yFaint->data.F32[nF] = source->moments->Sy;
+	xFaint->data.F32[nF] = source->moments->Mxx;
+	yFaint->data.F32[nF] = source->moments->Myy;
 	nF++;
     
@@ -68,6 +68,6 @@
 	if (source->moments->SN < 25) continue;
 
-	xBright->data.F32[nB] = source->moments->Sx;
-	yBright->data.F32[nB] = source->moments->Sy;
+	xBright->data.F32[nB] = source->moments->Mxx;
+	yBright->data.F32[nB] = source->moments->Myy;
 	nB++;
     }
@@ -160,7 +160,7 @@
 
 	psEllipseMoments moments;
-	moments.x2 = source->moments->Sx;
-	moments.y2 = source->moments->Sy;
-	moments.xy = source->moments->Sxy;
+	moments.x2 = source->moments->Mxx;
+	moments.xy = source->moments->Mxy;
+	moments.y2 = source->moments->Myy;
 
 	psEllipseShape shape;
