PAL7933. Use SMESH_HypoFilter to retrieve assigned hypotheses

This commit is contained in:
eap 2005-02-04 11:00:40 +00:00
parent 36409e98c9
commit 9b3ccd683e

View File

@ -30,6 +30,7 @@ using namespace std;
#include "SMESH_Algo.hxx" #include "SMESH_Algo.hxx"
#include "SMESH_Gen.hxx" #include "SMESH_Gen.hxx"
#include "SMESH_Mesh.hxx" #include "SMESH_Mesh.hxx"
#include "SMESH_HypoFilter.hxx"
#include <GeomAdaptor_Curve.hxx> #include <GeomAdaptor_Curve.hxx>
#include <BRep_Tool.hxx> #include <BRep_Tool.hxx>
@ -91,30 +92,18 @@ const vector < string > &SMESH_Algo::GetCompatibleHypothesis()
const list <const SMESHDS_Hypothesis *> & SMESH_Algo::GetUsedHypothesis( const list <const SMESHDS_Hypothesis *> & SMESH_Algo::GetUsedHypothesis(
SMESH_Mesh & aMesh, const TopoDS_Shape & aShape) SMESH_Mesh & aMesh, const TopoDS_Shape & aShape)
{ {
_usedHypList.clear(); _usedHypList.clear();
_usedHypList = GetAppliedHypothesis(aMesh, aShape); // copy if ( !_compatibleHypothesis.empty() )
int nbHyp = _usedHypList.size(); {
if (nbHyp == 0) SMESH_HypoFilter filter( SMESH_HypoFilter::HasName( _compatibleHypothesis[0] ));
{ for ( int i = 1; i < _compatibleHypothesis.size(); ++i )
TopTools_ListIteratorOfListOfShape ancIt( aMesh.GetAncestors( aShape )); filter.Or( filter.HasName( _compatibleHypothesis[ i ] ));
for (; ancIt.More(); ancIt.Next())
{ aMesh.GetHypotheses( aShape, filter, _usedHypList, true );
const TopoDS_Shape& ancestor = ancIt.Value(); if ( _usedHypList.size() > 1 )
_usedHypList = GetAppliedHypothesis(aMesh, ancestor); // copy _usedHypList.clear(); //only one compatible hypothesis allowed
nbHyp = _usedHypList.size(); }
if (nbHyp == 1) return _usedHypList;
break;
}
// TopoDS_Shape mainShape = aMesh.GetMeshDS()->ShapeToMesh();
// if (!mainShape.IsSame(aShape))
// {
// _usedHypList = GetAppliedHypothesis(aMesh, mainShape); // copy
// nbHyp = _usedHypList.size();
// }
}
if (nbHyp > 1)
_usedHypList.clear(); //only one compatible hypothesis allowed
return _usedHypList;
} }
//============================================================================= //=============================================================================
@ -128,34 +117,16 @@ const list <const SMESHDS_Hypothesis *> & SMESH_Algo::GetUsedHypothesis(
const list<const SMESHDS_Hypothesis *> & SMESH_Algo::GetAppliedHypothesis( const list<const SMESHDS_Hypothesis *> & SMESH_Algo::GetAppliedHypothesis(
SMESH_Mesh & aMesh, const TopoDS_Shape & aShape) SMESH_Mesh & aMesh, const TopoDS_Shape & aShape)
{ {
const SMESHDS_Mesh * meshDS = aMesh.GetMeshDS(); _appliedHypList.clear();
const list<const SMESHDS_Hypothesis*> & listHyp = meshDS->GetHypothesis(aShape); if ( !_compatibleHypothesis.empty() )
list<const SMESHDS_Hypothesis*>::const_iterator it=listHyp.begin(); {
SMESH_HypoFilter filter( SMESH_HypoFilter::HasName( _compatibleHypothesis[0] ));
int hypType; for ( int i = 1; i < _compatibleHypothesis.size(); ++i )
string hypName; filter.Or( filter.HasName( _compatibleHypothesis[ i ] ));
_appliedHypList.clear(); aMesh.GetHypotheses( aShape, filter, _appliedHypList, false );
while (it!=listHyp.end()) }
{ return _appliedHypList;
const SMESHDS_Hypothesis *anHyp = *it;
hypType = anHyp->GetType();
//SCRUTE(hypType);
if (hypType == SMESHDS_Hypothesis::PARAM_ALGO)
{
hypName = anHyp->GetName();
vector < string >::iterator ith =
find(_compatibleHypothesis.begin(), _compatibleHypothesis.end(),
hypName);
if (ith != _compatibleHypothesis.end()) // count only relevant
{
_appliedHypList.push_back(anHyp);
//SCRUTE(hypName);
}
}
it++;
}
return _appliedHypList;
} }
//============================================================================= //=============================================================================