Index: sm/trunk/src/m/classes/@model/fieldcount.m
===================================================================
--- /issm/trunk/src/m/classes/@model/fieldcount.m	(revision 2594)
+++ 	(revision )
@@ -1,8 +1,0 @@
-function numFields = fieldcount(modelObj)
-%FIELDCOUNT - determine the number of fields in an model object
-%
-%   determines the number of fields in an model object
-%   Used by model child class methods
-%   Do not use
-
-numFields = length(fieldnames(modelObj));
Index: sm/trunk/src/m/classes/public/domaintomesh.m
===================================================================
--- /issm/trunk/src/m/classes/public/domaintomesh.m	(revision 2594)
+++ 	(revision )
@@ -1,36 +1,0 @@
-function interp=domaintomesh(md,domainname,interptype)
-%DOMAINTOMESH - flag elements or nodes located inside an Argus contour
-%
-%   from an Argus domain outline, and a @model object, figure out
-%   which elements (interptype='element') or which grid (interptype='node')
-%   is inside the domain.
-%
-%   Usage:
-%      interp=domaintomesh(md,domainname,interptype)
-%
-%   Example:
-%      flag=domaintomesh(md,'Domain.exp','node');
-%
-%   See also: ARGUSCONTOURTOMESH
-
-%some checks on list of arguments
-if ((nargin~=3) | (nargout~=1)),
-	domaintomeshusage();
-	error('domaintomesh error message');
-end
-if ((~ischar(domainname)) | (~ischar(interptype))  )
-	domaintomeshusage();
-	error('domaintomesh error message');
-end
-
-if ( (~strcmp(interptype,'node')) & (~strcmp(interptype,'element')) )
-	domaintomeshusage();
-	error('domaintomesh error message');
-end
-
-[rinterp]=ContourToMesh(md.elements,md.x,md.y,expread(domainname,1),interptype,1);
-interp=IMdb('select matrix from rinterp');
-IMdb('drop rinterp');
-
-function domaintomeshusage(),
-disp('usage: md=domaintomesh(md,domainname,interptype')
Index: sm/trunk/src/m/classes/public/fieldcount.m
===================================================================
--- /issm/trunk/src/m/classes/public/fieldcount.m	(revision 2594)
+++ 	(revision )
@@ -1,8 +1,0 @@
-function numFields = fieldcount(modelObj)
-%FIELDCOUNT - determines the number of fields in an model object
-%
-%   determines the number of fields in an model object
-%   Used by model child class methods
-%   Do not use
-
-numFields = length(fieldnames(modelObj));
Index: sm/trunk/src/m/classes/public/mesh2grid.m
===================================================================
--- /issm/trunk/src/m/classes/public/mesh2grid.m	(revision 2594)
+++ 	(revision )
@@ -1,16 +1,0 @@
-function md=mesh2grid(md,field,cornereast,cornernorth,xspacing,yspacing,nlines,ncols,defautvalue)
-%MESH2GRID - build a grid out of a filed given on the mesh
-%
-%   Usage:
-%      md=mesh2grid(md,data,cornereast,cornernorth,xspacing,yspacing,nlines,ncols,defautvalue)
-
-if strcmpi(md.type,'2d'),
-	error('mesh2grid error message: 3d mesh not supported yet')
-end
-
-if ischar(field),
-	md.mesh2grid_parameters{end+1}=field;
-end
-
-[md.mesh2grid_x_m md.mesh2grid_y_m md.mesh2grid_data]=...
-	InterpFromMeshToGrid(md.elements,md.x,md.y,md.(field),cornereast,cornernorth,xspacing,yspacing,nlines,ncols,defautvalue);
Index: /issm/trunk/src/m/classes/public/qstat.m
===================================================================
--- /issm/trunk/src/m/classes/public/qstat.m	(revision 2594)
+++ /issm/trunk/src/m/classes/public/qstat.m	(revision 2595)
@@ -1,4 +1,4 @@
 function qstat(md)
-%QSTAT - ...
+%QSTAT - check job status on remote cluster
 %
 %   Usage:
