mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-19 13:10:34 +05:00
0021208: Performance issue when loading SMESH with an hdf file containing a big mesh
+ bool ToForgetMeshDataOnHypModif() const { return myToForgetMeshDataOnHypModif; }
This commit is contained in:
parent
6bf9c4aeaf
commit
11bf8d1e4d
@ -203,6 +203,8 @@ public:
|
|||||||
CORBA::Boolean byMesh)
|
CORBA::Boolean byMesh)
|
||||||
throw ( SALOME::SALOME_Exception );
|
throw ( SALOME::SALOME_Exception );
|
||||||
|
|
||||||
|
// Preferences
|
||||||
|
// ------------
|
||||||
/*!
|
/*!
|
||||||
* Sets number of segments per diagonal of boundary box of geometry by which
|
* Sets number of segments per diagonal of boundary box of geometry by which
|
||||||
* default segment length of appropriate 1D hypotheses is defined
|
* default segment length of appropriate 1D hypotheses is defined
|
||||||
@ -222,6 +224,12 @@ public:
|
|||||||
*/
|
*/
|
||||||
virtual char* GetOption(const char*);
|
virtual char* GetOption(const char*);
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* To load full mesh data from study at hyp modification or not
|
||||||
|
*/
|
||||||
|
bool ToForgetMeshDataOnHypModif() const { return myToForgetMeshDataOnHypModif; }
|
||||||
|
|
||||||
|
|
||||||
// Create empty mesh on a shape
|
// Create empty mesh on a shape
|
||||||
SMESH::SMESH_Mesh_ptr CreateMesh( GEOM::GEOM_Object_ptr theShapeObject )
|
SMESH::SMESH_Mesh_ptr CreateMesh( GEOM::GEOM_Object_ptr theShapeObject )
|
||||||
throw ( SALOME::SALOME_Exception );
|
throw ( SALOME::SALOME_Exception );
|
||||||
@ -588,6 +596,9 @@ private:
|
|||||||
SALOMEDS::Study_var myCurrentStudy; // Current study
|
SALOMEDS::Study_var myCurrentStudy; // Current study
|
||||||
CORBA::Boolean myIsEmbeddedMode; // Current mode
|
CORBA::Boolean myIsEmbeddedMode; // Current mode
|
||||||
|
|
||||||
|
// To load full mesh data from study at hyp modification or not
|
||||||
|
bool myToForgetMeshDataOnHypModif;
|
||||||
|
|
||||||
// Dump Python: trace of API methods calls
|
// Dump Python: trace of API methods calls
|
||||||
std::map < int, Handle(TColStd_HSequenceOfAsciiString) > myPythonScripts;
|
std::map < int, Handle(TColStd_HSequenceOfAsciiString) > myPythonScripts;
|
||||||
bool myIsHistoricalPythonDump;
|
bool myIsHistoricalPythonDump;
|
||||||
|
Loading…
Reference in New Issue
Block a user