[cig-commits] r16269 - short/3D/PyLith/trunk/libsrc/meshio

brad at geodynamics.org brad at geodynamics.org
Tue Feb 16 15:58:20 PST 2010


Author: brad
Date: 2010-02-16 15:58:20 -0800 (Tue, 16 Feb 2010)
New Revision: 16269

Modified:
   short/3D/PyLith/trunk/libsrc/meshio/CellFilterAvg.cc
Log:
Removed debugging stuff.

Modified: short/3D/PyLith/trunk/libsrc/meshio/CellFilterAvg.cc
===================================================================
--- short/3D/PyLith/trunk/libsrc/meshio/CellFilterAvg.cc	2010-02-16 23:46:48 UTC (rev 16268)
+++ short/3D/PyLith/trunk/libsrc/meshio/CellFilterAvg.cc	2010-02-16 23:58:20 UTC (rev 16269)
@@ -99,10 +99,6 @@
     ((sieveMesh->hasLabel("censored depth")) ?
      "censored depth" : "depth") : label;
 
-  std::cout << "labelName: " << labelName
-	    << ", depth: " << depth
-	    << std::endl;
-
   const ALE::Obj<label_sequence>& cells = 
     sieveMesh->getLabelStratum(labelName, depth);
   assert(!cells.isNull());
@@ -117,11 +113,6 @@
   const int fiberDim = totalFiberDim / numQuadPts;
   assert(fiberDim * numQuadPts == totalFiberDim);
 
-  fieldIn.view("INPUT FIELD");
-  std::cout << "CELLS SIZE: " << cells->size() << std::endl;
-  std::cout << "FIBERDIM: " << fiberDim << std::endl;
-  std::cout << "CELLS BEGIN: " << *cellsBegin << std::endl;
-
   // Allocate field if necessary
   ALE::MemoryLogger& logger = ALE::MemoryLogger::singleton();
   logger.stagePush("Output");
@@ -192,8 +183,6 @@
   } // for
   PetscLogFlops( cells->size() * numQuadPts*fiberDim*3 );
 
-  _fieldAvg->view("AVERAGED FIELD");
-
   return *_fieldAvg;
 } // filter
 



More information about the CIG-COMMITS mailing list