Index: /issm/trunk/src/c/objects/ExternalResults/DoubleMatExternalResult.cpp
===================================================================
--- /issm/trunk/src/c/objects/ExternalResults/DoubleMatExternalResult.cpp	(revision 4311)
+++ /issm/trunk/src/c/objects/ExternalResults/DoubleMatExternalResult.cpp	(revision 4312)
@@ -54,13 +54,4 @@
 
 /*Object virtual functions definitions:*/
-		void  Echo();
-		void  DeepEcho();
-		int   Id(); 
-		int   MyRank();
-		void  Marshall(char** pmarshalled_dataset);
-		int   MarshallSize();
-		void  Demarshall(char** pmarshalled_dataset);
-		int   Enum();
-		Object* copy();
 /*FUNCTION DoubleMatExternalResult::Echo {{{1*/
 void DoubleMatExternalResult::Echo(void){
Index: /issm/trunk/src/c/objects/Patch.cpp
===================================================================
--- /issm/trunk/src/c/objects/Patch.cpp	(revision 4311)
+++ /issm/trunk/src/c/objects/Patch.cpp	(revision 4312)
@@ -61,5 +61,7 @@
 }
 /*}}}*/
-/*FUNCTION Patch::fillelementinfo(int row, int element_id, int* vertices_ids, int num_vertices);{{{1*/
+
+/*Object methods*/
+/*FUNCTION Patch::fillelementinfo{{{1*/
 void Patch::fillelementinfo(int count, int element_id, int* vertices_ids, int num_vertices){
 
@@ -80,5 +82,5 @@
 }
 /*}}}*/
-/*FUNCTION Patch::fillresultinfo(int row,int enum_type,int step, double time, int interpolation, double* nodal_values, int num_nodes){{{1*/
+/*FUNCTION Patch::fillresultinfo{{{1*/
 void Patch::fillresultinfo(int count,int enum_type,int step, double time, int interpolation, double* nodal_values, int num_nodes){
 
@@ -102,5 +104,5 @@
 }
 /*}}}*/
-/*FUNCTION Patch::MPI_Gather(void){{{1*/
+/*FUNCTION Patch::MPI_Gather{{{1*/
 void Patch::MPI_Gather(void){
 
Index: /issm/trunk/src/c/objects/Patch.h
===================================================================
--- /issm/trunk/src/c/objects/Patch.h	(revision 4311)
+++ /issm/trunk/src/c/objects/Patch.h	(revision 4312)
@@ -3,16 +3,19 @@
  */ 
 
-
-/*
-	A Patch object is used to store all results held in elements, in a serial way, and to dump them to disk. 
+/*A Patch object is used to store all results held in elements, in a serial way, and to dump them to disk. 
 	
 	Each row of the Patch object is made of the following information: 
-	the result enum_type, the step and time, the id of the element, the interpolation type, the vertices ids, and the values
-	at the nodes (could be different from the vertices). For ex: 
-
-	VxEnum 1  .5  1 P0  1 2       4.5 NaN  NaN //on a Beam element, Vx, at step 1, time .5, element id 1, interpolation type P0 (constant value on a beam element), vertices ids 1 and 2, one constant value 4.5
-	VzEnum 2  .8  2 P1  1 3 4     4.5 3.2  2.5 //on a Tria element, Vz, at step 2, time .8, element id 2, interpolation type P1  (linear values on a tria element), vertices ids 1 3 and 4, with values at 3 nodes 4.5, 3.2, 2.5
-	... etc ...
-
+	- the result enum_type, 
+	- the step and time, 
+	- the id of the element, 
+	- the interpolation type, 
+	- the vertices ids, 
+	- and the values at the nodes (could be different from the vertices).
+	
+	For ex: 
+	1. on a Beam element, Vx, at step 1, time .5, element id 1, interpolation type P0 (constant), vertices ids 1 and 2, one constant value 4.5
+	   VxEnum 1  .5  1 P0  1 2       4.5 NaN  NaN
+	2. on a Tria element, Vz, at step 2, time .8, element id 2, interpolation type P1 (linear), vertices ids 1 3 and 4, with values at 3 nodes 4.5, 3.2, 2.5
+	   VzEnum 2  .8  2 P1  1 3 4     4.5 3.2  2.5
 */
 
@@ -35,5 +38,4 @@
 		
 		double* values;  //result values
-				
 
 		Patch();
@@ -45,9 +47,5 @@
 		void WriteToDisk(int solutiontype,char* filename);
 
-
-
 };
 
-
 #endif //ifndef _PATCH_H_
-
