mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-13 17:18:35 +05:00
Remove useless traces
This commit is contained in:
parent
2107fb0fba
commit
e2c7e8b8f4
@ -125,24 +125,17 @@ int SMDS_Mesh::CheckMemory(const bool doNotRaise) throw (std::bad_alloc)
|
|||||||
/// Create a new mesh object
|
/// Create a new mesh object
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
SMDS_Mesh::SMDS_Mesh()
|
SMDS_Mesh::SMDS_Mesh()
|
||||||
:myParent(NULL),
|
:myParent(NULL),
|
||||||
myNodeIDFactory(new SMDS_MeshNodeIDFactory()),
|
myNodeIDFactory(new SMDS_MeshNodeIDFactory()),
|
||||||
myElementIDFactory(new SMDS_MeshElementIDFactory()),
|
myElementIDFactory(new SMDS_MeshElementIDFactory()),
|
||||||
myHasConstructionEdges(false), myHasConstructionFaces(false),
|
myHasConstructionEdges(false), myHasConstructionFaces(false),
|
||||||
myHasInverseElements(true),
|
myHasInverseElements(true),
|
||||||
myNodeMin(0), myNodeMax(0),
|
myNodeMin(0), myNodeMax(0),
|
||||||
myNodePool(0), myEdgePool(0), myFacePool(0), myVolumePool(0),myBallPool(0),
|
myNodePool(0), myEdgePool(0), myFacePool(0), myVolumePool(0),myBallPool(0),
|
||||||
myModified(false), myModifTime(0), myCompactTime(0),
|
myModified(false), myModifTime(0), myCompactTime(0),
|
||||||
xmin(0), xmax(0), ymin(0), ymax(0), zmin(0), zmax(0)
|
xmin(0), xmax(0), ymin(0), ymax(0), zmin(0), zmax(0)
|
||||||
{
|
{
|
||||||
myMeshId = _meshList.size(); // --- index of the mesh to push back in the vector
|
myMeshId = _meshList.size(); // --- index of the mesh to push back in the vector
|
||||||
MESSAGE("myMeshId=" << myMeshId);
|
|
||||||
MESSAGE("sizeof(SMDS_MeshElement) " << sizeof(SMDS_MeshElement) );
|
|
||||||
MESSAGE("sizeof(SMDS_MeshNode) " << sizeof(SMDS_MeshNode) );
|
|
||||||
MESSAGE("sizeof(SMDS_MeshCell) " << sizeof(SMDS_MeshCell) );
|
|
||||||
MESSAGE("sizeof(SMDS_VtkVolume) " << sizeof(SMDS_VtkVolume) );
|
|
||||||
MESSAGE("sizeof(SMDS_Position) " << sizeof(SMDS_Position) );
|
|
||||||
MESSAGE("sizeof(SMDS_SpacePosition) " << sizeof(SMDS_SpacePosition) );
|
|
||||||
myNodeIDFactory->SetMesh(this);
|
myNodeIDFactory->SetMesh(this);
|
||||||
myElementIDFactory->SetMesh(this);
|
myElementIDFactory->SetMesh(this);
|
||||||
_meshList.push_back(this);
|
_meshList.push_back(this);
|
||||||
|
@ -116,8 +116,6 @@ SMESH_subMesh::SMESH_subMesh(int Id,
|
|||||||
|
|
||||||
SMESH_subMesh::~SMESH_subMesh()
|
SMESH_subMesh::~SMESH_subMesh()
|
||||||
{
|
{
|
||||||
MESSAGE("SMESH_subMesh::~SMESH_subMesh");
|
|
||||||
// ****
|
|
||||||
deleteOwnListeners();
|
deleteOwnListeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -47,10 +47,7 @@ using namespace std;
|
|||||||
SMESH_Hypothesis_i::SMESH_Hypothesis_i( PortableServer::POA_ptr thePOA )
|
SMESH_Hypothesis_i::SMESH_Hypothesis_i( PortableServer::POA_ptr thePOA )
|
||||||
: SALOME::GenericObj_i( thePOA )
|
: SALOME::GenericObj_i( thePOA )
|
||||||
{
|
{
|
||||||
MESSAGE( "SMESH_Hypothesis_i::SMESH_Hypothesis_i / Début" );
|
|
||||||
myBaseImpl = 0;
|
myBaseImpl = 0;
|
||||||
|
|
||||||
MESSAGE( "SMESH_Hypothesis_i::SMESH_Hypothesis_i / Fin" );
|
|
||||||
};
|
};
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
@ -78,7 +75,6 @@ SMESH_Hypothesis_i::~SMESH_Hypothesis_i()
|
|||||||
|
|
||||||
char* SMESH_Hypothesis_i::GetName()
|
char* SMESH_Hypothesis_i::GetName()
|
||||||
{
|
{
|
||||||
//MESSAGE( "SMESH_Hypothesis_i::GetName" );
|
|
||||||
return CORBA::string_dup( myBaseImpl->GetName() );
|
return CORBA::string_dup( myBaseImpl->GetName() );
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -92,7 +88,6 @@ char* SMESH_Hypothesis_i::GetName()
|
|||||||
|
|
||||||
char* SMESH_Hypothesis_i::GetLibName()
|
char* SMESH_Hypothesis_i::GetLibName()
|
||||||
{
|
{
|
||||||
MESSAGE( "SMESH_Hypothesis_i::GetLibName" );
|
|
||||||
return CORBA::string_dup( myBaseImpl->GetLibName() );
|
return CORBA::string_dup( myBaseImpl->GetLibName() );
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -106,7 +101,6 @@ char* SMESH_Hypothesis_i::GetLibName()
|
|||||||
|
|
||||||
void SMESH_Hypothesis_i::SetLibName(const char* theLibName)
|
void SMESH_Hypothesis_i::SetLibName(const char* theLibName)
|
||||||
{
|
{
|
||||||
MESSAGE( "SMESH_Hypothesis_i::SetLibName" );
|
|
||||||
myBaseImpl->SetLibName( theLibName );
|
myBaseImpl->SetLibName( theLibName );
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -120,7 +114,6 @@ void SMESH_Hypothesis_i::SetLibName(const char* theLibName)
|
|||||||
|
|
||||||
CORBA::Long SMESH_Hypothesis_i::GetId()
|
CORBA::Long SMESH_Hypothesis_i::GetId()
|
||||||
{
|
{
|
||||||
MESSAGE( "SMESH_Hypothesis_i::GetId" );
|
|
||||||
return myBaseImpl->GetID();
|
return myBaseImpl->GetID();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user