[cig-commits] r4229 - short/3D/PyLith/branches/pylith-0.8/pylith3d/module

knepley at geodynamics.org knepley at geodynamics.org
Fri Aug 4 15:14:21 PDT 2006


Author: knepley
Date: 2006-08-04 15:14:20 -0700 (Fri, 04 Aug 2006)
New Revision: 4229

Modified:
   short/3D/PyLith/branches/pylith-0.8/pylith3d/module/scanner.cc
Log:
Fix mesh viewer name


Modified: short/3D/PyLith/branches/pylith-0.8/pylith3d/module/scanner.cc
===================================================================
--- short/3D/PyLith/branches/pylith-0.8/pylith3d/module/scanner.cc	2006-08-04 21:46:21 UTC (rev 4228)
+++ short/3D/PyLith/branches/pylith-0.8/pylith3d/module/scanner.cc	2006-08-04 22:14:20 UTC (rev 4229)
@@ -176,7 +176,7 @@
 
 // Process mesh
 
-PetscErrorCode MeshView_Sieve_Newer(ALE::Obj<ALE::Mesh> mesh, PetscViewer viewer);
+PetscErrorCode MeshView_Sieve(ALE::Obj<ALE::Mesh> mesh, PetscViewer viewer);
 
 char pypylith3d_processMesh__doc__[] = "";
 char pypylith3d_processMesh__name__[] = "processMesh";
@@ -269,7 +269,7 @@
   } else if (PetscExceptionCaught(ierr, PETSC_ERR_FILE_OPEN)) {
     ierr = 0;
   } 
-  ierr = MeshView_Sieve_Newer(mesh, viewer);
+  ierr = MeshView_Sieve(mesh, viewer);
   ierr = PetscViewerDestroy(viewer);
   debug << journal::at(__HERE__) << "[" << rank << "]Output new PyLith mesh into: " << meshOutputFile << journal::endl;
 
@@ -519,7 +519,7 @@
   PetscViewerSetFormat(viewer, PETSC_VIEWER_ASCII_VTK);
   filename += ".vtk";
   PetscViewerFileSetName(viewer, filename.c_str());
-  MeshView_Sieve_Newer(m, viewer);
+  MeshView_Sieve(m, viewer);
   FieldView_Sieve(m, "full_displacement", viewer);
   PetscViewerPushFormat(viewer, PETSC_VIEWER_ASCII_VTK_CELL);
   FieldView_Sieve(m, "material", viewer);



More information about the cig-commits mailing list