X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_QuadtreeNode.cxx;h=11fe12cd2e51c99fa5a3a253be6d05728662b266;hb=58bb6b7459bebeeb089c9ed486c4683a8bae7288;hp=547b8a47daf3165c6f7d0a33ff8550ecdd71fd1e;hpb=6125fb8b6cbed45b172a104b5ae3c0b3cd909e5c;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_QuadtreeNode.cxx b/src/HYDROData/HYDROData_QuadtreeNode.cxx index 547b8a47..11fe12cd 100644 --- a/src/HYDROData/HYDROData_QuadtreeNode.cxx +++ b/src/HYDROData/HYDROData_QuadtreeNode.cxx @@ -49,12 +49,12 @@ HYDROData_QuadtreeNode::HYDROData_QuadtreeNode(Nodes_3D* theNodes, const double minBoxSize) : HYDROData_Quadtree(new Limit(maxLevel, minBoxSize, maxNbNodes)), myNodes(theNodes), myPrecision(0.25) { - DEBTRACE("---------------------------- HYDROData_QuadtreeNode root constructor"); + //DEBTRACE("---------------------------- HYDROData_QuadtreeNode root constructor"); if (myNodes) { - DEBTRACE(" --- start compute"); + //DEBTRACE(" --- start compute"); compute(); - DEBTRACE(" --- end compute"); + //DEBTRACE(" --- end compute"); } } @@ -88,11 +88,11 @@ void HYDROData_QuadtreeNode::setNodesAndCompute(Nodes_3D* theNodes) myNodes = theNodes; if (myNodes) { - DEBTRACE(" --- start compute"); + //DEBTRACE(" --- start compute"); compute(); - DEBTRACE(" --- end compute : children & height " << this->nbChildren() << " " << this->getHeight()); - DEBTRACE("Bounding box min: " << this->myBox->CornerMin().X() << " " << this->myBox->CornerMin().Y()); - DEBTRACE("Bounding box max: " << this->myBox->CornerMax().X() << " " << this->myBox->CornerMax().Y()); + //DEBTRACE(" --- end compute : children & height " << this->nbChildren() << " " << this->getHeight()); + //DEBTRACE("Bounding box min: " << this->myBox->CornerMin().X() << " " << this->myBox->CornerMin().Y()); + //DEBTRACE("Bounding box max: " << this->myBox->CornerMax().X() << " " << this->myBox->CornerMax().Y()); } }