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

willic3 at geodynamics.org willic3 at geodynamics.org
Thu Mar 22 11:13:14 PDT 2007


Author: willic3
Date: 2007-03-22 11:13:13 -0700 (Thu, 22 Mar 2007)
New Revision: 6351

Modified:
   short/3D/PyLith/branches/pylith-0.8/pylith3d/module/scanner.cc
Log:
Removed debugging statements.



Modified: short/3D/PyLith/branches/pylith-0.8/pylith3d/module/scanner.cc
===================================================================
--- short/3D/PyLith/branches/pylith-0.8/pylith3d/module/scanner.cc	2007-03-22 05:37:21 UTC (rev 6350)
+++ short/3D/PyLith/branches/pylith-0.8/pylith3d/module/scanner.cc	2007-03-22 18:13:13 UTC (rev 6351)
@@ -68,7 +68,6 @@
   PetscFunctionBegin;
   ierr = PetscStrcpy(bcFilename, baseFilename);
   // ierr = PetscStrcat(bcFilename, ".bc");
-  std::cout << bcFilename;
   f = fopen(bcFilename, "r");CHKERRQ(ierr);
   IgnoreComments_PyLith(buf, 2048, f);
   /* Ignore displacement units */
@@ -156,7 +155,6 @@
   bcFilename[slen-3] = '\0';
   // ierr = PetscStrcpy(bcFilename, baseFilename.substr(0,slen-4));
   ierr = PetscStrcat(bcFilename, suff);
-  std::cout << bcFilename;
 
   // Determine if we have bc stuff
   const ALE::Obj<ALE::Mesh::topology_type::label_sequence>& vertices = boundaries->getTopology()->depthStratum(patch, 0);
@@ -167,7 +165,6 @@
       break;
     } // if
 
-  std::cout << bcFilename;
   f = fopen(bcFilename, "w");CHKERRQ(ierr);
   if (haveBC) {
     // Only write header if bc file contains information
@@ -246,7 +243,6 @@
   m = ALE::New::Distribution<ALE::Mesh::topology_type>::distributeMesh(m, partitioner);
   ierr = MeshSetMesh(mesh, m);
   debug << journal::at(__HERE__) << "[" << rank << "]Distributed PETSc Mesh"  << journal::endl;
-  std::cout << meshBcFile;
   ierr = ReadBoundary_PyLith(meshBcFile, PETSC_FALSE, &numBoundaryVertices, &numBoundaryComponents, &boundaryVertices, &boundaryValues);
 
   const Obj<ALE::Mesh::foliated_section_type>& boundaries = m->getBoundariesNew();
@@ -315,7 +311,6 @@
   std::strncpy(bcFilename, meshBcFile, slen-3);
   // ierr = PetscStrcpy(bcFilename, meshBcFile.substr(0,slen-4));
   ierr = PetscStrcat(bcFilename, suff);
-  std::cout << bcFilename;
 
   debug << journal::at(__HERE__) << "[" << rank << "]Output new PyLith mesh into: " << bcFilename << journal::endl;
 



More information about the cig-commits mailing list