[cig-commits] r14339 - in short/3D/PyLith/branches/pylith-swig/libsrc: feassemble materials

brad at geodynamics.org brad at geodynamics.org
Mon Mar 16 11:59:50 PDT 2009


Author: brad
Date: 2009-03-16 11:59:49 -0700 (Mon, 16 Mar 2009)
New Revision: 14339

Modified:
   short/3D/PyLith/branches/pylith-swig/libsrc/feassemble/IntegratorElasticity.cc
   short/3D/PyLith/branches/pylith-swig/libsrc/materials/Material.cc
Log:
Removed debugging stuff.

Modified: short/3D/PyLith/branches/pylith-swig/libsrc/feassemble/IntegratorElasticity.cc
===================================================================
--- short/3D/PyLith/branches/pylith-swig/libsrc/feassemble/IntegratorElasticity.cc	2009-03-16 17:13:44 UTC (rev 14338)
+++ short/3D/PyLith/branches/pylith-swig/libsrc/feassemble/IntegratorElasticity.cc	2009-03-16 18:59:49 UTC (rev 14339)
@@ -98,13 +98,9 @@
   const ALE::Obj<SieveMesh::label_sequence>& cells = 
     sieveMesh->getLabelStratum("material-id", materialId);
 
-  std::cout << "Before compute geometry." << std::endl;
-
   // Compute geometry for quadrature operations.
   _quadrature->computeGeometry(mesh, cells);
 
-  std::cout << "Before material initialize" << std::endl;
-
   // Initialize material.
   _material->initialize(mesh, _quadrature);
 
@@ -112,8 +108,6 @@
   _initCellVector();
   _initCellMatrix();
 
-  std::cout << "Before setting up logger" << std::endl;
-
   // Setup event logger.
   delete _logger; _logger = new utils::EventLogger;
   assert(0 != _logger);

Modified: short/3D/PyLith/branches/pylith-swig/libsrc/materials/Material.cc
===================================================================
--- short/3D/PyLith/branches/pylith-swig/libsrc/materials/Material.cc	2009-03-16 17:13:44 UTC (rev 14338)
+++ short/3D/PyLith/branches/pylith-swig/libsrc/materials/Material.cc	2009-03-16 18:59:49 UTC (rev 14339)
@@ -103,10 +103,6 @@
   const int numQuadPts = quadrature->numQuadPts();
   const int spaceDim = quadrature->spaceDim();
 
-  std::cout << "numQuadPts: " << numQuadPts
-	    << ", spaceDim: " << spaceDim
-	    << std::endl;
-
   // Get cells associated with material
   const ALE::Obj<SieveMesh>& sieveMesh = mesh.sieveMesh();
   assert(!sieveMesh.isNull());
@@ -117,8 +113,6 @@
   const spatialdata::geocoords::CoordSys* cs = mesh.coordsys();
   assert(0 != cs);
 
-  std::cout << "Creating fields" << std::endl;
-
   // Create field to hold physical properties.
   delete _properties; _properties = new topology::Field<topology::Mesh>(mesh);
   assert(0 != _properties);
@@ -129,16 +123,12 @@
   const ALE::Obj<RealSection>& propertiesSection = _properties->section();
   assert(!propertiesSection.isNull());
 
-  std::cout << "Creating arrays" << std::endl;
-
   // Create arrays for querying.
   const int numDBProperties = _metadata.numDBProperties();
   double_array quadPtsGlobal(numQuadPts*spaceDim);
   double_array propertiesQuery(numDBProperties);
   double_array propertiesCell(numQuadPts*numDBProperties);
 
-  std::cout << "Setting up dbProperties" << std::endl;
-
   // Setup database for quering for physical properties
   assert(0 != _dbProperties);
   _dbProperties->open();



More information about the CIG-COMMITS mailing list