Salome HOME
PR: synchro V6_main tag mergeto_V7_main_11Feb13
[modules/smesh.git] / src / SMESH_I / SMESH_MeshEditor_i.cxx
index 821a8a0a1e925dd789128b215ae1c99d8821e639..87e88611289bc893010542658742e0552164cc85 100644 (file)
 
 #include "SMESH_MeshEditor_i.hxx"
 
+#include "SMDS_EdgePosition.hxx"
+#include "SMDS_ElemIterator.hxx"
+#include "SMDS_FacePosition.hxx"
+#include "SMDS_IteratorOnIterators.hxx"
 #include "SMDS_LinearEdge.hxx"
 #include "SMDS_Mesh0DElement.hxx"
 #include "SMDS_MeshFace.hxx"
 #include "SMDS_MeshVolume.hxx"
 #include "SMDS_PolyhedralVolumeOfNodes.hxx"
 #include "SMDS_SetIterator.hxx"
+#include "SMDS_VolumeTool.hxx"
 #include "SMESHDS_Group.hxx"
+#include "SMESHDS_GroupOnGeom.hxx"
 #include "SMESH_ControlsDef.hxx"
 #include "SMESH_Filter_i.hxx"
 #include "SMESH_Gen_i.hxx"
+#include "SMESH_Group.hxx"
 #include "SMESH_Group_i.hxx"
+#include "SMESH_MeshPartDS.hxx"
+#include "SMESH_MesherHelper.hxx"
 #include "SMESH_PythonDump.hxx"
 #include "SMESH_subMeshEventListener.hxx"
 #include "SMESH_subMesh_i.hxx"
 
-#include "utilities.h"
-#include "Utils_ExceptHandlers.hxx"
-#include "Utils_CorbaException.hxx"
+#include <utilities.h>
+#include <Utils_ExceptHandlers.hxx>
+#include <Utils_CorbaException.hxx>
+#include <SALOMEDS_wrap.hxx>
 
 #include <BRepAdaptor_Surface.hxx>
 #include <BRep_Tool.hxx>
 #include <sstream>
 #include <limits>
 
+#include "SMESH_TryCatch.hxx" // include after OCCT headers!
+
 #define cast2Node(elem) static_cast<const SMDS_MeshNode*>( elem )
 
 using namespace std;
 using SMESH::TPythonDump;
 using SMESH::TVar;
 
-namespace {
+namespace MeshEditor_I {
 
   //=============================================================================
   /*!
@@ -90,7 +102,7 @@ namespace {
     SMDSAbs_ElementType myPreviewType; // type to show
     //!< Constructor
     TPreviewMesh(SMDSAbs_ElementType previewElements = SMDSAbs_All) {
-      _isShapeToMesh = (_id =_studyId =_idDoc = 0);
+      _isShapeToMesh = (_id =_studyId = 0);
       _myMeshDS  = new SMESHDS_Mesh( _id, true );
       myPreviewType = previewElements;
     }
@@ -261,7 +273,7 @@ namespace {
       const SMDS_MeshElement * elem =
         (aType == SMDSAbs_Node ? aMesh->FindNode(ind) : aMesh->FindElement(ind));
       if ( elem && ( aType == SMDSAbs_All || elem->GetType() == aType ))
-        aMap.insert( elem );
+        aMap.insert( aMap.end(), elem );
     }
   }
   //================================================================================
@@ -296,6 +308,7 @@ namespace {
     else
     {
       arrayToSet( anIDs, theMeshDS, theElemSet, theType);
+      return bool(anIDs->length()) == bool(theElemSet.size());
     }
     return true;
   }
@@ -378,7 +391,27 @@ namespace {
       }
     }
   }
-}
+
+  //================================================================================
+  /*!
+   * \brief Return a string used to detect change of mesh part on which theElementSearcher
+   * is going to be used
+   */
+  //================================================================================
+
+  string getPartIOR( SMESH::SMESH_IDSource_ptr theMeshPart, SMESH::ElementType type)
+  {
+    string partIOR = SMESH_Gen_i::GetORB()->object_to_string( theMeshPart );
+    if ( SMESH_Group_i* group_i = SMESH::DownCast<SMESH_Group_i*>( theMeshPart ))
+      // take into account passible group modification
+      partIOR += SMESH_Comment( ((SMESHDS_Group*)group_i->GetGroupDS())->SMDSGroup().Tic() );
+    partIOR += SMESH_Comment( type );
+    return partIOR;
+  }
+
+} // namespace MeshEditor_I
+
+using namespace MeshEditor_I;
 
 //=============================================================================
 /*!
@@ -386,11 +419,14 @@ namespace {
  */
 //=============================================================================
 
-SMESH_MeshEditor_i::SMESH_MeshEditor_i(SMESH_Mesh_i* theMesh, bool isPreview)
+SMESH_MeshEditor_i::SMESH_MeshEditor_i(SMESH_Mesh_i* theMesh, bool isPreview):
+  myMesh_i( theMesh ),
+  myMesh( &theMesh->GetImpl() ),
+  myEditor( myMesh ),
+  myIsPreviewMode ( isPreview ),
+  myPreviewMesh( 0 ),
+  myPreviewEditor( 0 )
 {
-  myMesh_i = theMesh;
-  myMesh = & theMesh->GetImpl();
-  myPreviewMode = isPreview;
 }
 
 //================================================================================
@@ -401,6 +437,9 @@ SMESH_MeshEditor_i::SMESH_MeshEditor_i(SMESH_Mesh_i* theMesh, bool isPreview)
 
 SMESH_MeshEditor_i::~SMESH_MeshEditor_i()
 {
+  deleteAuxIDSources();
+  delete myPreviewMesh;   myPreviewMesh = 0;
+  delete myPreviewEditor; myPreviewEditor = 0;
 }
 
 //================================================================================
@@ -411,15 +450,209 @@ SMESH_MeshEditor_i::~SMESH_MeshEditor_i()
 
 void SMESH_MeshEditor_i::initData(bool deleteSearchers)
 {
-  if ( myPreviewMode ) {
-    myPreviewData = new SMESH::MeshPreviewStruct();
+  if ( myIsPreviewMode ) {
+    if ( myPreviewMesh ) myPreviewMesh->Clear();
   }
   else {
-    myLastCreatedElems = new SMESH::long_array();
-    myLastCreatedNodes = new SMESH::long_array();
     if ( deleteSearchers )
       TSearchersDeleter::Delete();
   }
+  getEditor().GetError().reset();
+  getEditor().CrearLastCreated();
+}
+//================================================================================
+/*!
+ * \brief Return either myEditor or myPreviewEditor depending on myIsPreviewMode.
+ *        WARNING: in preview mode call getPreviewMesh() before getEditor()!
+ */
+//================================================================================
+
+::SMESH_MeshEditor& SMESH_MeshEditor_i::getEditor()
+{
+  if ( myIsPreviewMode && !myPreviewEditor ) {
+    if ( !myPreviewMesh ) getPreviewMesh();
+    myPreviewEditor = new ::SMESH_MeshEditor( myPreviewMesh );
+  }
+  return myIsPreviewMode ? *myPreviewEditor : myEditor;
+}
+
+//================================================================================
+/*!
+ * \brief Initialize and return myPreviewMesh
+ *  \param previewElements - type of elements to show in preview
+ *
+ *  WARNING: call it once par a method!
+ */
+//================================================================================
+
+TPreviewMesh * SMESH_MeshEditor_i::getPreviewMesh(SMDSAbs_ElementType previewElements)
+{
+  if ( !myPreviewMesh || myPreviewMesh->myPreviewType != previewElements )
+  {
+    delete myPreviewEditor;
+    myPreviewEditor = 0;
+    delete myPreviewMesh;
+    myPreviewMesh = new TPreviewMesh( previewElements );
+  }
+  myPreviewMesh->Clear();
+  return myPreviewMesh;
+}
+
+//================================================================================
+/*!
+ * \brief Now does nothing
+ */
+//================================================================================
+
+// void SMESH_MeshEditor_i::storeResult(::SMESH_MeshEditor& )
+// {
+// }
+
+//================================================================================
+/*!
+ * Return data of mesh edition preview
+ */
+//================================================================================
+
+SMESH::MeshPreviewStruct* SMESH_MeshEditor_i::GetPreviewData()
+{
+  const bool hasBadElems = ( getEditor().GetError() && getEditor().GetError()->HasBadElems() );
+
+  if ( myIsPreviewMode || hasBadElems ) { // --- MeshPreviewStruct filling ---
+
+    list<int> aNodesConnectivity;
+    typedef map<int, int> TNodesMap;
+    TNodesMap nodesMap;
+
+    SMESHDS_Mesh* aMeshDS;
+    std::auto_ptr< SMESH_MeshPartDS > aMeshPartDS;
+    if ( hasBadElems ) {
+      aMeshPartDS.reset( new SMESH_MeshPartDS( getEditor().GetError()->myBadElements ));
+      aMeshDS = aMeshPartDS.get();
+    }
+    else {
+      aMeshDS = getEditor().GetMeshDS();
+    }
+    myPreviewData = new SMESH::MeshPreviewStruct();
+    myPreviewData->nodesXYZ.length(aMeshDS->NbNodes());
+
+    
+    SMDSAbs_ElementType previewType = SMDSAbs_All;
+    if ( !hasBadElems )
+      if (TPreviewMesh * aPreviewMesh = dynamic_cast< TPreviewMesh* >( getEditor().GetMesh() )) {
+        previewType = aPreviewMesh->myPreviewType;
+        switch ( previewType ) {
+        case SMDSAbs_Edge  : break;
+        case SMDSAbs_Face  : break;
+        case SMDSAbs_Volume: break;
+        default:;
+          if ( aMeshDS->GetMeshInfo().NbElements() == 0 ) previewType = SMDSAbs_Node;
+        }
+      }
+
+    myPreviewData->elementTypes.length( aMeshDS->GetMeshInfo().NbElements( previewType ));
+    int i = 0, j = 0;
+    SMDS_ElemIteratorPtr itMeshElems = aMeshDS->elementsIterator(previewType);
+
+    while ( itMeshElems->more() ) {
+      const SMDS_MeshElement* aMeshElem = itMeshElems->next();
+      SMDS_ElemIteratorPtr itElemNodes = aMeshElem->nodesIterator();
+      while ( itElemNodes->more() ) {
+        const SMDS_MeshNode* aMeshNode =
+          static_cast<const SMDS_MeshNode*>( itElemNodes->next() );
+        int aNodeID = aMeshNode->GetID();
+        TNodesMap::iterator anIter = nodesMap.find(aNodeID);
+        if ( anIter == nodesMap.end() ) {
+          // filling the nodes coordinates
+          myPreviewData->nodesXYZ[j].x = aMeshNode->X();
+          myPreviewData->nodesXYZ[j].y = aMeshNode->Y();
+          myPreviewData->nodesXYZ[j].z = aMeshNode->Z();
+          anIter = nodesMap.insert( make_pair(aNodeID, j) ).first;
+          j++;
+        }
+        aNodesConnectivity.push_back(anIter->second);
+      }
+
+      // filling the elements types
+      SMDSAbs_ElementType aType = aMeshElem->GetType();
+      bool               isPoly = aMeshElem->IsPoly();
+
+      myPreviewData->elementTypes[i].SMDS_ElementType = (SMESH::ElementType) aType;
+      myPreviewData->elementTypes[i].isPoly = isPoly;
+      myPreviewData->elementTypes[i].nbNodesInElement = aMeshElem->NbNodes();
+      i++;
+
+    }
+    myPreviewData->nodesXYZ.length( j );
+
+    // filling the elements connectivities
+    list<int>::iterator aConnIter = aNodesConnectivity.begin();
+    myPreviewData->elementConnectivities.length(aNodesConnectivity.size());
+    for( int i = 0; aConnIter != aNodesConnectivity.end(); aConnIter++, i++ )
+      myPreviewData->elementConnectivities[i] = *aConnIter;
+  }
+
+  return myPreviewData._retn();
+}
+
+//================================================================================
+/*!
+ * \brief Returns list of it's IDs of created nodes
+ * \retval SMESH::long_array* - list of node ID
+ */
+//================================================================================
+
+SMESH::long_array* SMESH_MeshEditor_i::GetLastCreatedNodes()
+{
+  SMESH::long_array_var myLastCreatedNodes = new SMESH::long_array();
+  const SMESH_SequenceOfElemPtr& aSeq = getEditor().GetLastCreatedNodes();
+  myLastCreatedNodes->length( aSeq.Length() );
+  for (int i = 1; i <= aSeq.Length(); i++)
+    myLastCreatedNodes[i-1] = aSeq.Value(i)->GetID();
+  return myLastCreatedNodes._retn();
+}
+
+//================================================================================
+/*!
+ * \brief Returns list of it's IDs of created elements
+ * \retval SMESH::long_array* - list of elements' ID
+ */
+//================================================================================
+
+SMESH::long_array* SMESH_MeshEditor_i::GetLastCreatedElems()
+{
+  SMESH::long_array_var myLastCreatedElems = new SMESH::long_array();
+  const SMESH_SequenceOfElemPtr& aSeq = getEditor().GetLastCreatedElems();
+  myLastCreatedElems->length( aSeq.Length() );
+  for ( int i = 1; i <= aSeq.Length(); i++ )
+    myLastCreatedElems[i-1] = aSeq.Value(i)->GetID();
+  return myLastCreatedElems._retn();
+}
+
+//=======================================================================
+/*
+ * Returns description of an error/warning occured during the last operation
+ */
+//=======================================================================
+
+SMESH::ComputeError* SMESH_MeshEditor_i::GetLastError()
+{
+  SMESH::ComputeError_var errOut = new SMESH::ComputeError;
+  SMESH_ComputeErrorPtr&  errIn  = getEditor().GetError();
+  if ( errIn && !errIn->IsOK() )
+  {
+    errOut->code       = -( errIn->myName < 0 ? errIn->myName + 1: errIn->myName ); // -1 -> 0
+    errOut->comment    = errIn->myComment.c_str();
+    errOut->subShapeID = -1;
+    errOut->hasBadMesh = !errIn->myBadElements.empty();
+  }
+  else
+  {
+    errOut->code       = 0;
+    errOut->subShapeID = -1;
+    errOut->hasBadMesh = false;
+  }
+  return errOut._retn();
 }
 
 //=======================================================================
@@ -427,7 +660,7 @@ void SMESH_MeshEditor_i::initData(bool deleteSearchers)
 //purpose  : Wrap a sequence of ids in a SMESH_IDSource
 //=======================================================================
 
-struct _IDSource : public POA_SMESH::SMESH_IDSource
+struct SMESH_MeshEditor_i::_IDSource : public POA_SMESH::SMESH_IDSource
 {
   SMESH::long_array     _ids;
   SMESH::ElementType    _type;
@@ -450,15 +683,33 @@ struct _IDSource : public POA_SMESH::SMESH_IDSource
 SMESH::SMESH_IDSource_ptr SMESH_MeshEditor_i::MakeIDSource(const SMESH::long_array& ids,
                                                            SMESH::ElementType       type)
 {
-  _IDSource* anIDSource = new _IDSource;
-  anIDSource->_ids = ids;
-  anIDSource->_type = type;
-  anIDSource->_mesh = myMesh_i->_this();
-  SMESH::SMESH_IDSource_var anIDSourceVar = anIDSource->_this();
+  if ( myAuxIDSources.size() > 10 )
+    deleteAuxIDSources();
+
+  _IDSource* idSrc = new _IDSource;
+  idSrc->_mesh = myMesh_i->_this();
+  idSrc->_ids  = ids;
+  idSrc->_type = type;
+  myAuxIDSources.push_back( idSrc );
+
+  SMESH::SMESH_IDSource_var anIDSourceVar = idSrc->_this();
 
   return anIDSourceVar._retn();
 }
 
+bool SMESH_MeshEditor_i::IsTemporaryIDSource( SMESH::SMESH_IDSource_ptr& idSource )
+{
+  return SMESH::DownCast<SMESH_MeshEditor_i::_IDSource*>( idSource );
+}
+
+void SMESH_MeshEditor_i::deleteAuxIDSources()
+{
+  std::list< _IDSource* >::iterator idSrcIt = myAuxIDSources.begin();
+  for ( ; idSrcIt != myAuxIDSources.end(); ++idSrcIt )
+    delete *idSrcIt;
+  myAuxIDSources.clear();
+}
+
 //=============================================================================
 /*!
  *
@@ -470,7 +721,6 @@ SMESH_MeshEditor_i::RemoveElements(const SMESH::long_array & IDsOfElements)
 {
   initData();
 
-  ::SMESH_MeshEditor anEditor( myMesh );
   list< int > IdList;
 
   for (int i = 0; i < IDsOfElements.length(); i++)
@@ -480,7 +730,7 @@ SMESH_MeshEditor_i::RemoveElements(const SMESH::long_array & IDsOfElements)
   TPythonDump() << "isDone = " << this << ".RemoveElements( " << IDsOfElements << " )";
 
   // Remove Elements
-  bool ret = anEditor.Remove( IdList, false );
+  bool ret = getEditor().Remove( IdList, false );
   myMesh->GetMeshDS()->Modified();
   if ( IDsOfElements.length() )
     myMesh->SetIsModified( true ); // issue 0020693
@@ -497,7 +747,6 @@ CORBA::Boolean SMESH_MeshEditor_i::RemoveNodes(const SMESH::long_array & IDsOfNo
 {
   initData();
 
-  ::SMESH_MeshEditor anEditor( myMesh );
   list< int > IdList;
   for (int i = 0; i < IDsOfNodes.length(); i++)
     IdList.push_back( IDsOfNodes[i] );
@@ -505,7 +754,7 @@ CORBA::Boolean SMESH_MeshEditor_i::RemoveNodes(const SMESH::long_array & IDsOfNo
   // Update Python script
   TPythonDump() << "isDone = " << this << ".RemoveNodes( " << IDsOfNodes << " )";
 
-  bool ret = anEditor.Remove( IdList, true );
+  bool ret = getEditor().Remove( IdList, true );
   myMesh->GetMeshDS()->Modified();
   if ( IDsOfNodes.length() )
     myMesh->SetIsModified( true ); // issue 0020693
@@ -522,7 +771,6 @@ CORBA::Long SMESH_MeshEditor_i::RemoveOrphanNodes()
 {
   initData();
 
-  ::SMESH_MeshEditor anEditor( myMesh );
 
   // Update Python script
   TPythonDump() << "nbRemoved = " << this << ".RemoveOrphanNodes()";
@@ -530,7 +778,7 @@ CORBA::Long SMESH_MeshEditor_i::RemoveOrphanNodes()
   // Create filter to find all orphan nodes
   SMESH::Controls::Filter::TIdSequence seq;
   SMESH::Controls::PredicatePtr predicate( new SMESH::Controls::FreeNodes() );
-  SMESH::Controls::Filter::GetElementsId( GetMeshDS(), predicate, seq );
+  SMESH::Controls::Filter::GetElementsId( getMeshDS(), predicate, seq );
 
   // remove orphan nodes (if there are any)
   list< int > IdList;
@@ -538,7 +786,7 @@ CORBA::Long SMESH_MeshEditor_i::RemoveOrphanNodes()
     IdList.push_back( seq[i] );
 
   int nbNodesBefore = myMesh->NbNodes();
-  anEditor.Remove( IdList, true );
+  getEditor().Remove( IdList, true );
   myMesh->GetMeshDS()->Modified();
   if ( IdList.size() )
     myMesh->SetIsModified( true );
@@ -549,7 +797,7 @@ CORBA::Long SMESH_MeshEditor_i::RemoveOrphanNodes()
 
 //=============================================================================
 /*!
- *
+ * Add a new node.
  */
 //=============================================================================
 
@@ -558,7 +806,7 @@ CORBA::Long SMESH_MeshEditor_i::AddNode(CORBA::Double x,
 {
   initData();
 
-  const SMDS_MeshNode* N = GetMeshDS()->AddNode(x, y, z);
+  const SMDS_MeshNode* N = getMeshDS()->AddNode(x, y, z);
 
   // Update Python script
   TPythonDump() << "nodeID = " << this << ".AddNode( "
@@ -571,15 +819,16 @@ CORBA::Long SMESH_MeshEditor_i::AddNode(CORBA::Double x,
 
 //=============================================================================
 /*!
- *
+ * Create 0D element on the given node.
  */
 //=============================================================================
+
 CORBA::Long SMESH_MeshEditor_i::Add0DElement(CORBA::Long IDOfNode)
 {
   initData();
 
-  const SMDS_MeshNode* aNode = GetMeshDS()->FindNode(IDOfNode);
-  SMDS_MeshElement* elem = GetMeshDS()->Add0DElement(aNode);
+  const SMDS_MeshNode* aNode = getMeshDS()->FindNode(IDOfNode);
+  SMDS_MeshElement* elem = getMeshDS()->Add0DElement(aNode);
 
   // Update Python script
   TPythonDump() << "elem0d = " << this << ".Add0DElement( " << IDOfNode <<" )";
@@ -595,7 +844,42 @@ CORBA::Long SMESH_MeshEditor_i::Add0DElement(CORBA::Long IDOfNode)
 
 //=============================================================================
 /*!
- *
+ * Create a ball element on the given node.
+ */
+//=============================================================================
+
+CORBA::Long SMESH_MeshEditor_i::AddBall(CORBA::Long IDOfNode, CORBA::Double diameter)
+  throw (SALOME::SALOME_Exception)
+{
+  initData();
+
+  if ( diameter < std::numeric_limits<double>::min() )
+    THROW_SALOME_CORBA_EXCEPTION("Invalid diameter", SALOME::BAD_PARAM);
+
+  SMESH_TRY;
+
+  const SMDS_MeshNode* aNode = getMeshDS()->FindNode(IDOfNode);
+  SMDS_MeshElement* elem = getMeshDS()->AddBall(aNode, diameter);
+
+  // Update Python script
+  TPythonDump() << "ballElem = "
+                << this << ".AddBall( " << IDOfNode << ", " << diameter <<" )";
+
+  myMesh->GetMeshDS()->Modified();
+  myMesh->SetIsModified( true ); // issue 0020693
+
+  if (elem)
+    return elem->GetID();
+
+  SMESH_CATCH( SMESH::throwCorbaException );
+
+  return 0;
+}
+
+//=============================================================================
+/*!
+ * Create an edge, either linear and quadratic (this is determed
+ *  by number of given nodes, two or three)
  */
 //=============================================================================
 
@@ -609,7 +893,8 @@ CORBA::Long SMESH_MeshEditor_i::AddEdge(const SMESH::long_array & IDsOfNodes)
   {
     CORBA::Long index1 = IDsOfNodes[0];
     CORBA::Long index2 = IDsOfNodes[1];
-    elem = GetMeshDS()->AddEdge(GetMeshDS()->FindNode(index1), GetMeshDS()->FindNode(index2));
+    elem = getMeshDS()->AddEdge( getMeshDS()->FindNode(index1),
+                                 getMeshDS()->FindNode(index2));
 
     // Update Python script
     TPythonDump() << "edge = " << this << ".AddEdge([ "
@@ -619,9 +904,9 @@ CORBA::Long SMESH_MeshEditor_i::AddEdge(const SMESH::long_array & IDsOfNodes)
     CORBA::Long n1 = IDsOfNodes[0];
     CORBA::Long n2 = IDsOfNodes[1];
     CORBA::Long n12 = IDsOfNodes[2];
-    elem = GetMeshDS()->AddEdge(GetMeshDS()->FindNode(n1),
-                                GetMeshDS()->FindNode(n2),
-                                GetMeshDS()->FindNode(n12));
+    elem = getMeshDS()->AddEdge( getMeshDS()->FindNode(n1),
+                                 getMeshDS()->FindNode(n2),
+                                 getMeshDS()->FindNode(n12));
     // Update Python script
     TPythonDump() << "edgeID = " << this << ".AddEdge([ "
                   <<n1<<", "<<n2<<", "<<n12<<" ])";
@@ -652,29 +937,29 @@ CORBA::Long SMESH_MeshEditor_i::AddFace(const SMESH::long_array & IDsOfNodes)
 
   std::vector<const SMDS_MeshNode*> nodes (NbNodes);
   for (int i = 0; i < NbNodes; i++)
-    nodes[i] = GetMeshDS()->FindNode(IDsOfNodes[i]);
+    nodes[i] = getMeshDS()->FindNode(IDsOfNodes[i]);
 
   SMDS_MeshElement* elem = 0;
   if (NbNodes == 3) {
-    elem = GetMeshDS()->AddFace(nodes[0], nodes[1], nodes[2]);
+    elem = getMeshDS()->AddFace(nodes[0], nodes[1], nodes[2]);
   }
   else if (NbNodes == 4) {
-    elem = GetMeshDS()->AddFace(nodes[0], nodes[1], nodes[2], nodes[3]);
+    elem = getMeshDS()->AddFace(nodes[0], nodes[1], nodes[2], nodes[3]);
   }
   else if (NbNodes == 6) {
-    elem = GetMeshDS()->AddFace(nodes[0], nodes[1], nodes[2], nodes[3],
+    elem = getMeshDS()->AddFace(nodes[0], nodes[1], nodes[2], nodes[3],
                                 nodes[4], nodes[5]);
   }
   else if (NbNodes == 8) {
-    elem = GetMeshDS()->AddFace(nodes[0], nodes[1], nodes[2], nodes[3],
+    elem = getMeshDS()->AddFace(nodes[0], nodes[1], nodes[2], nodes[3],
                                 nodes[4], nodes[5], nodes[6], nodes[7]);
   }
   else if (NbNodes == 9) {
-    elem = GetMeshDS()->AddFace(nodes[0], nodes[1], nodes[2], nodes[3],
+    elem = getMeshDS()->AddFace(nodes[0], nodes[1], nodes[2], nodes[3],
                                 nodes[4], nodes[5], nodes[6], nodes[7], nodes[8] );
   }
   else if (NbNodes > 2) {
-    elem = GetMeshDS()->AddPolygonalFace(nodes);
+    elem = getMeshDS()->AddPolygonalFace(nodes);
   }
 
   // Update Python script
@@ -699,9 +984,9 @@ CORBA::Long SMESH_MeshEditor_i::AddPolygonalFace (const SMESH::long_array & IDsO
   int NbNodes = IDsOfNodes.length();
   std::vector<const SMDS_MeshNode*> nodes (NbNodes);
   for (int i = 0; i < NbNodes; i++)
-    nodes[i] = GetMeshDS()->FindNode(IDsOfNodes[i]);
+    nodes[i] = getMeshDS()->FindNode(IDsOfNodes[i]);
 
-  const SMDS_MeshElement* elem = GetMeshDS()->AddPolygonalFace(nodes);
+  const SMDS_MeshElement* elem = getMeshDS()->AddPolygonalFace(nodes);
 
   // Update Python script
   TPythonDump() <<"faceID = "<<this<<".AddPolygonalFace( "<<IDsOfNodes<<" )";
@@ -712,7 +997,8 @@ CORBA::Long SMESH_MeshEditor_i::AddPolygonalFace (const SMESH::long_array & IDsO
 
 //=============================================================================
 /*!
- *
+ * Create volume, either linear and quadratic (this is determed
+ *  by number of given nodes)
  */
 //=============================================================================
 
@@ -723,32 +1009,32 @@ CORBA::Long SMESH_MeshEditor_i::AddVolume(const SMESH::long_array & IDsOfNodes)
   int NbNodes = IDsOfNodes.length();
   vector< const SMDS_MeshNode*> n(NbNodes);
   for(int i=0;i<NbNodes;i++)
-    n[i]=GetMeshDS()->FindNode(IDsOfNodes[i]);
+    n[i]= getMeshDS()->FindNode(IDsOfNodes[i]);
 
   SMDS_MeshElement* elem = 0;
   switch(NbNodes)
   {
-  case 4 :elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3]); break;
-  case 5 :elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4]); break;
-  case 6 :elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5]); break;
-  case 8 :elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],n[7]); break;
-  case 10:elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],
+  case 4 :elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3]); break;
+  case 5 :elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4]); break;
+  case 6 :elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5]); break;
+  case 8 :elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],n[7]); break;
+  case 10:elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],
                                         n[6],n[7],n[8],n[9]);
     break;
-  case 12:elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],
+  case 12:elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],
                                         n[6],n[7],n[8],n[9],n[10],n[11]);
     break;
-  case 13:elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],
+  case 13:elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],
                                         n[7],n[8],n[9],n[10],n[11],n[12]);
     break;
-  case 15:elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],n[7],n[8],
+  case 15:elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],n[7],n[8],
                                         n[9],n[10],n[11],n[12],n[13],n[14]);
     break;
-  case 20:elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],n[7],
+  case 20:elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],n[7],
                                         n[8],n[9],n[10],n[11],n[12],n[13],n[14],
                                         n[15],n[16],n[17],n[18],n[19]);
     break;
-  case 27:elem = GetMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],n[7],
+  case 27:elem = getMeshDS()->AddVolume(n[0],n[1],n[2],n[3],n[4],n[5],n[6],n[7],
                                         n[8],n[9],n[10],n[11],n[12],n[13],n[14],
                                         n[15],n[16],n[17],n[18],n[19],
                                         n[20],n[21],n[22],n[23],n[24],n[25],n[26]);
@@ -779,7 +1065,7 @@ CORBA::Long SMESH_MeshEditor_i::AddPolyhedralVolume (const SMESH::long_array & I
   std::vector<const SMDS_MeshNode*> n (NbNodes);
   for (int i = 0; i < NbNodes; i++)
     {
-      const SMDS_MeshNode* aNode = GetMeshDS()->FindNode(IDsOfNodes[i]);
+      const SMDS_MeshNode* aNode = getMeshDS()->FindNode(IDsOfNodes[i]);
       if (!aNode) return 0;
       n[i] = aNode;
     }
@@ -789,7 +1075,7 @@ CORBA::Long SMESH_MeshEditor_i::AddPolyhedralVolume (const SMESH::long_array & I
   for (int j = 0; j < NbFaces; j++)
     q[j] = Quantities[j];
 
-  const SMDS_MeshElement* elem = GetMeshDS()->AddPolyhedralVolume(n, q);
+  const SMDS_MeshElement* elem = getMeshDS()->AddPolyhedralVolume(n, q);
 
   // Update Python script
   TPythonDump() << "volID = " << this << ".AddPolyhedralVolume( "
@@ -804,6 +1090,7 @@ CORBA::Long SMESH_MeshEditor_i::AddPolyhedralVolume (const SMESH::long_array & I
  *  AddPolyhedralVolumeByFaces
  */
 //=============================================================================
+
 CORBA::Long SMESH_MeshEditor_i::AddPolyhedralVolumeByFaces (const SMESH::long_array & IdsOfFaces)
 {
   initData();
@@ -813,7 +1100,7 @@ CORBA::Long SMESH_MeshEditor_i::AddPolyhedralVolumeByFaces (const SMESH::long_ar
   std::vector<int> quantities (NbFaces);
 
   for (int i = 0; i < NbFaces; i++) {
-    const SMDS_MeshElement* aFace = GetMeshDS()->FindElement(IdsOfFaces[i]);
+    const SMDS_MeshElement* aFace = getMeshDS()->FindElement(IdsOfFaces[i]);
     quantities[i] = aFace->NbNodes();
 
     SMDS_ElemIteratorPtr It = aFace->nodesIterator();
@@ -822,7 +1109,7 @@ CORBA::Long SMESH_MeshEditor_i::AddPolyhedralVolumeByFaces (const SMESH::long_ar
     }
   }
 
-  const SMDS_MeshElement* elem = GetMeshDS()->AddPolyhedralVolume(poly_nodes, quantities);
+  const SMDS_MeshElement* elem = getMeshDS()->AddPolyhedralVolume(poly_nodes, quantities);
 
   // Update Python script
   TPythonDump() << "volID = " << this << ".AddPolyhedralVolumeByFaces( "
@@ -832,6 +1119,81 @@ CORBA::Long SMESH_MeshEditor_i::AddPolyhedralVolumeByFaces (const SMESH::long_ar
   return elem ? ( myMesh->SetIsModified( true ), elem->GetID()) : 0;
 }
 
+//=============================================================================
+//
+// \brief Create 0D elements on all nodes of the given object except those 
+//        nodes on which a 0D element already exists.
+//  \param theObject object on whose nodes 0D elements will be created.
+//  \param theGroupName optional name of a group to add 0D elements created
+//         and/or found on nodes of \a theObject.
+//  \return an object (a new group or a temporary SMESH_IDSource) holding
+//          ids of new and/or found 0D elements.
+//
+//=============================================================================
+
+SMESH::SMESH_IDSource_ptr
+SMESH_MeshEditor_i::Create0DElementsOnAllNodes(SMESH::SMESH_IDSource_ptr theObject,
+                                               const char*               theGroupName)
+  throw (SALOME::SALOME_Exception)
+{
+  initData();
+
+  SMESH::SMESH_IDSource_var result;
+  TPythonDump pyDump;
+
+  SMESH_TRY;
+
+  TIDSortedElemSet elements, elems0D;
+  if ( idSourceToSet( theObject, getMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
+    getEditor().Create0DElementsOnAllNodes( elements, elems0D );
+
+  SMESH::long_array_var newElems = new SMESH::long_array;
+  newElems->length( elems0D.size() );
+  TIDSortedElemSet::iterator eIt = elems0D.begin();
+  for ( size_t i = 0; i < elems0D.size(); ++i, ++eIt )
+    newElems[ i ] = (*eIt)->GetID();
+
+  SMESH::SMESH_GroupBase_var groupToFill;
+  if ( theGroupName && strlen( theGroupName ))
+  {
+    // Get existing group named theGroupName
+    SMESH::ListOfGroups_var groups = myMesh_i->GetGroups();
+    for (int i = 0, nbGroups = groups->length(); i < nbGroups; i++ ) {
+      SMESH::SMESH_GroupBase_var group = groups[i];
+      if ( !group->_is_nil() ) {
+        CORBA::String_var name = group->GetName();
+        if ( strcmp( name.in(), theGroupName ) == 0 && group->GetType() == SMESH::ELEM0D ) {
+          groupToFill = group;
+          break;
+        }
+      }
+    }
+    if ( groupToFill->_is_nil() )
+      groupToFill = myMesh_i->CreateGroup( SMESH::ELEM0D, theGroupName );
+    else if ( !SMESH::DownCast< SMESH_Group_i* > ( groupToFill ))
+      groupToFill = myMesh_i->ConvertToStandalone( groupToFill );
+  }
+
+  if ( SMESH_Group_i* group_i = SMESH::DownCast< SMESH_Group_i* > ( groupToFill ))
+  {
+    group_i->Add( newElems );
+    result = SMESH::SMESH_IDSource::_narrow( groupToFill );
+    pyDump << groupToFill;
+  }
+  else
+  {
+    result = MakeIDSource( newElems, SMESH::ELEM0D );
+    pyDump << "elem0DIDs";
+  }
+
+  pyDump << " = " << this << ".Create0DElementsOnAllNodes( "
+         << theObject << ", '" << theGroupName << "' )";
+
+  SMESH_CATCH( SMESH::throwCorbaException );
+
+  return result._retn();
+}
+
 //=============================================================================
 /*!
  * \brief Bind a node to a vertex
@@ -846,7 +1208,7 @@ void SMESH_MeshEditor_i::SetNodeOnVertex(CORBA::Long NodeID, CORBA::Long VertexI
 {
   Unexpect aCatch(SALOME_SalomeException);
 
-  SMESHDS_Mesh * mesh = GetMeshDS();
+  SMESHDS_Mesh * mesh = getMeshDS();
   SMDS_MeshNode* node = const_cast<SMDS_MeshNode*>( mesh->FindNode(NodeID) );
   if ( !node )
     THROW_SALOME_CORBA_EXCEPTION("Invalid NodeID", SALOME::BAD_PARAM);
@@ -879,7 +1241,7 @@ void SMESH_MeshEditor_i::SetNodeOnEdge(CORBA::Long NodeID, CORBA::Long EdgeID,
 {
   Unexpect aCatch(SALOME_SalomeException);
 
-  SMESHDS_Mesh * mesh = GetMeshDS();
+  SMESHDS_Mesh * mesh = getMeshDS();
   SMDS_MeshNode* node = const_cast<SMDS_MeshNode*>( mesh->FindNode(NodeID) );
   if ( !node )
     THROW_SALOME_CORBA_EXCEPTION("Invalid NodeID", SALOME::BAD_PARAM);
@@ -918,7 +1280,7 @@ void SMESH_MeshEditor_i::SetNodeOnFace(CORBA::Long NodeID, CORBA::Long FaceID,
 {
   Unexpect aCatch(SALOME_SalomeException);
 
-  SMESHDS_Mesh * mesh = GetMeshDS();
+  SMESHDS_Mesh * mesh = getMeshDS();
   SMDS_MeshNode* node = const_cast<SMDS_MeshNode*>( mesh->FindNode(NodeID) );
   if ( !node )
     THROW_SALOME_CORBA_EXCEPTION("Invalid NodeID", SALOME::BAD_PARAM);
@@ -965,7 +1327,7 @@ void SMESH_MeshEditor_i::SetNodeInVolume(CORBA::Long NodeID, CORBA::Long SolidID
 {
   Unexpect aCatch(SALOME_SalomeException);
 
-  SMESHDS_Mesh * mesh = GetMeshDS();
+  SMESHDS_Mesh * mesh = getMeshDS();
   SMDS_MeshNode* node = const_cast<SMDS_MeshNode*>( mesh->FindNode(NodeID) );
   if ( !node )
     THROW_SALOME_CORBA_EXCEPTION("Invalid NodeID", SALOME::BAD_PARAM);
@@ -998,7 +1360,7 @@ void SMESH_MeshEditor_i::SetMeshElementOnShape(CORBA::Long ElementID,
 {
   Unexpect aCatch(SALOME_SalomeException);
 
-  SMESHDS_Mesh * mesh = GetMeshDS();
+  SMESHDS_Mesh * mesh = getMeshDS();
   SMDS_MeshElement* elem = const_cast<SMDS_MeshElement*>(mesh->FindElement(ElementID));
   if ( !elem )
     THROW_SALOME_CORBA_EXCEPTION("Invalid ElementID", SALOME::BAD_PARAM);
@@ -1029,8 +1391,8 @@ CORBA::Boolean SMESH_MeshEditor_i::InverseDiag(CORBA::Long NodeID1,
 {
   initData();
 
-  const SMDS_MeshNode * n1 = GetMeshDS()->FindNode( NodeID1 );
-  const SMDS_MeshNode * n2 = GetMeshDS()->FindNode( NodeID2 );
+  const SMDS_MeshNode * n1 = getMeshDS()->FindNode( NodeID1 );
+  const SMDS_MeshNode * n2 = getMeshDS()->FindNode( NodeID2 );
   if ( !n1 || !n2 )
     return false;
 
@@ -1039,8 +1401,7 @@ CORBA::Boolean SMESH_MeshEditor_i::InverseDiag(CORBA::Long NodeID1,
                 << NodeID1 << ", " << NodeID2 << " )";
 
 
-  ::SMESH_MeshEditor aMeshEditor( myMesh );
-  int ret =  aMeshEditor.InverseDiag ( n1, n2 );
+  int ret =  getEditor().InverseDiag ( n1, n2 );
   myMesh->GetMeshDS()->Modified();
   myMesh->SetIsModified( true );
   return ret;
@@ -1057,8 +1418,8 @@ CORBA::Boolean SMESH_MeshEditor_i::DeleteDiag(CORBA::Long NodeID1,
 {
   initData();
 
-  const SMDS_MeshNode * n1 = GetMeshDS()->FindNode( NodeID1 );
-  const SMDS_MeshNode * n2 = GetMeshDS()->FindNode( NodeID2 );
+  const SMDS_MeshNode * n1 = getMeshDS()->FindNode( NodeID1 );
+  const SMDS_MeshNode * n2 = getMeshDS()->FindNode( NodeID2 );
   if ( !n1 || !n2 )
     return false;
 
@@ -1066,15 +1427,13 @@ CORBA::Boolean SMESH_MeshEditor_i::DeleteDiag(CORBA::Long NodeID1,
   TPythonDump() << "isDone = " << this << ".DeleteDiag( "
                 << NodeID1 << ", " << NodeID2 <<  " )";
 
-  ::SMESH_MeshEditor aMeshEditor( myMesh );
 
-  bool stat = aMeshEditor.DeleteDiag ( n1, n2 );
+  bool stat = getEditor().DeleteDiag ( n1, n2 );
 
   myMesh->GetMeshDS()->Modified();
   if ( stat )
     myMesh->SetIsModified( true ); // issue 0020693
 
-  storeResult(aMeshEditor);
 
   return stat;
 }
@@ -1089,13 +1448,12 @@ CORBA::Boolean SMESH_MeshEditor_i::Reorient(const SMESH::long_array & IDsOfEleme
 {
   initData();
 
-  ::SMESH_MeshEditor anEditor( myMesh );
   for (int i = 0; i < IDsOfElements.length(); i++)
   {
     CORBA::Long index = IDsOfElements[i];
-    const SMDS_MeshElement * elem = GetMeshDS()->FindElement(index);
+    const SMDS_MeshElement * elem = getMeshDS()->FindElement(index);
     if ( elem )
-      anEditor.Reorient( elem );
+      getEditor().Reorient( elem );
   }
   // Update Python script
   TPythonDump() << "isDone = " << this << ".Reorient( " << IDsOfElements << " )";
@@ -1129,6 +1487,92 @@ CORBA::Boolean SMESH_MeshEditor_i::ReorientObject(SMESH::SMESH_IDSource_ptr theO
   return isDone;
 }
 
+//=======================================================================
+//function : Reorient2D
+//purpose  : Reorient faces contained in \a the2Dgroup.
+//           the2Dgroup   - the mesh or its part to reorient
+//           theDirection - desired direction of normal of \a theFace
+//           theFace      - ID of face whose orientation is checked.
+//           It can be < 1 then \a thePoint is used to find a face.
+//           thePoint     - is used to find a face if \a theFace < 1.
+//           return number of reoriented elements.
+//=======================================================================
+
+CORBA::Long SMESH_MeshEditor_i::Reorient2D(SMESH::SMESH_IDSource_ptr the2Dgroup,
+                                           const SMESH::DirStruct&   theDirection,
+                                           CORBA::Long               theFace,
+                                           const SMESH::PointStruct& thePoint)
+  throw (SALOME::SALOME_Exception)
+{
+  Unexpect aCatch(SALOME_SalomeException);
+
+  initData(/*deleteSearchers=*/false);
+
+  TIDSortedElemSet elements;
+  if ( !idSourceToSet( the2Dgroup, getMeshDS(), elements, SMDSAbs_Face, /*emptyIfIsMesh=*/1))
+    THROW_SALOME_CORBA_EXCEPTION("No faces in given group", SALOME::BAD_PARAM);
+
+
+  const SMDS_MeshElement* face = 0;
+  if ( theFace > 0 )
+  {
+    face = getMeshDS()->FindElement( theFace );
+    if ( !face )
+      THROW_SALOME_CORBA_EXCEPTION("Inexistent face given", SALOME::BAD_PARAM);
+    if ( face->GetType() != SMDSAbs_Face )
+      THROW_SALOME_CORBA_EXCEPTION("Wrong element type", SALOME::BAD_PARAM);
+  }
+  else
+  {
+    // create theElementSearcher if needed
+    theSearchersDeleter.Set( myMesh, getPartIOR( the2Dgroup, SMESH::FACE ));
+    if ( !theElementSearcher )
+    {
+      if ( elements.empty() ) // search in the whole mesh
+      {
+        if ( myMesh->NbFaces() == 0 )
+          THROW_SALOME_CORBA_EXCEPTION("No faces in the mesh", SALOME::BAD_PARAM);
+
+        theElementSearcher = myEditor.GetElementSearcher();
+      }
+      else
+      {
+        typedef SMDS_SetIterator<const SMDS_MeshElement*, TIDSortedElemSet::const_iterator > TIter;
+        SMDS_ElemIteratorPtr elemsIt( new TIter( elements.begin(), elements.end() ));
+
+        theElementSearcher = myEditor.GetElementSearcher(elemsIt);
+      }
+    }
+    // find a face
+    gp_Pnt p( thePoint.x, thePoint.y, thePoint.z );
+    face = theElementSearcher->FindClosestTo( p, SMDSAbs_Face );
+
+    if ( !face )
+      THROW_SALOME_CORBA_EXCEPTION("No face found by point", SALOME::INTERNAL_ERROR );
+    if ( !elements.empty() && !elements.count( face ))
+      THROW_SALOME_CORBA_EXCEPTION("Found face is not in the group", SALOME::BAD_PARAM );
+  }
+
+  const SMESH::PointStruct * P = &theDirection.PS;
+  gp_Vec dirVec( P->x, P->y, P->z );
+  if ( dirVec.Magnitude() < std::numeric_limits< double >::min() )
+    THROW_SALOME_CORBA_EXCEPTION("Zero size vector", SALOME::BAD_PARAM);
+
+  int nbReori = getEditor().Reorient2D( elements, dirVec, face );
+
+  if ( nbReori ) {
+    myMesh->SetIsModified( true );
+    myMesh->GetMeshDS()->Modified();
+  }
+  TPythonDump() << this << ".Reorient2D( "
+                << the2Dgroup << ", "
+                << theDirection << ", "
+                << theFace << ", "
+                << thePoint << " )";
+
+  return nbReori;
+}
+
 //=============================================================================
 /*!
  *
@@ -1140,7 +1584,7 @@ CORBA::Boolean SMESH_MeshEditor_i::TriToQuad (const SMESH::long_array &   IDsOfE
 {
   initData();
 
-  SMESHDS_Mesh* aMesh = GetMeshDS();
+  SMESHDS_Mesh* aMesh = getMeshDS();
   TIDSortedElemSet faces;
   arrayToSet(IDsOfElements, aMesh, faces, SMDSAbs_Face);
 
@@ -1148,7 +1592,7 @@ CORBA::Boolean SMESH_MeshEditor_i::TriToQuad (const SMESH::long_array &   IDsOfE
     dynamic_cast<SMESH::NumericalFunctor_i*>( SMESH_Gen_i::GetServant( Criterion ).in() );
   SMESH::Controls::NumericalFunctorPtr aCrit;
   if ( !aNumericalFunctor )
-    aCrit.reset( new SMESH::Controls::AspectRatio() );
+    aCrit.reset( new SMESH::Controls::MaxElementLength2D() );
   else
     aCrit = aNumericalFunctor->GetNumericalFunctor();
 
@@ -1156,14 +1600,12 @@ CORBA::Boolean SMESH_MeshEditor_i::TriToQuad (const SMESH::long_array &   IDsOfE
   TPythonDump() << "isDone = " << this << ".TriToQuad( "
                 << IDsOfElements << ", " << aNumericalFunctor << ", " << TVar( MaxAngle ) << " )";
 
-  ::SMESH_MeshEditor anEditor( myMesh );
 
-  bool stat = anEditor.TriToQuad( faces, aCrit, MaxAngle );
+  bool stat = getEditor().TriToQuad( faces, aCrit, MaxAngle );
   myMesh->GetMeshDS()->Modified();
   if ( stat )
     myMesh->SetIsModified( true ); // issue 0020693
 
-  storeResult(anEditor);
 
   return stat;
 }
@@ -1205,7 +1647,7 @@ CORBA::Boolean SMESH_MeshEditor_i::QuadToTri (const SMESH::long_array &   IDsOfE
 {
   initData();
 
-  SMESHDS_Mesh* aMesh = GetMeshDS();
+  SMESHDS_Mesh* aMesh = getMeshDS();
   TIDSortedElemSet faces;
   arrayToSet(IDsOfElements, aMesh, faces, SMDSAbs_Face);
 
@@ -1221,13 +1663,11 @@ CORBA::Boolean SMESH_MeshEditor_i::QuadToTri (const SMESH::long_array &   IDsOfE
   // Update Python script
   TPythonDump() << "isDone = " << this << ".QuadToTri( " << IDsOfElements << ", " << aNumericalFunctor << " )";
 
-  ::SMESH_MeshEditor anEditor( myMesh );
-  CORBA::Boolean stat = anEditor.QuadToTri( faces, aCrit );
+  CORBA::Boolean stat = getEditor().QuadToTri( faces, aCrit );
   myMesh->GetMeshDS()->Modified();
   if ( stat )
     myMesh->SetIsModified( true ); // issue 0020693
 
-  storeResult(anEditor);
 
   return stat;
 }
@@ -1268,7 +1708,7 @@ CORBA::Boolean SMESH_MeshEditor_i::SplitQuad (const SMESH::long_array & IDsOfEle
 {
   initData();
 
-  SMESHDS_Mesh* aMesh = GetMeshDS();
+  SMESHDS_Mesh* aMesh = getMeshDS();
   TIDSortedElemSet faces;
   arrayToSet(IDsOfElements, aMesh, faces, SMDSAbs_Face);
 
@@ -1276,14 +1716,12 @@ CORBA::Boolean SMESH_MeshEditor_i::SplitQuad (const SMESH::long_array & IDsOfEle
   TPythonDump() << "isDone = " << this << ".SplitQuad( "
                 << IDsOfElements << ", " << Diag13 << " )";
 
-  ::SMESH_MeshEditor anEditor( myMesh );
-  CORBA::Boolean stat = anEditor.QuadToTri( faces, Diag13 );
+  CORBA::Boolean stat = getEditor().QuadToTri( faces, Diag13 );
   myMesh->GetMeshDS()->Modified();
   if ( stat )
     myMesh->SetIsModified( true ); // issue 0020693
 
 
-  storeResult(anEditor);
 
   return stat;
 }
@@ -1322,7 +1760,7 @@ CORBA::Long SMESH_MeshEditor_i::BestSplit (CORBA::Long                 IDOfQuad,
 {
   initData();
 
-  const SMDS_MeshElement* quad = GetMeshDS()->FindElement(IDOfQuad);
+  const SMDS_MeshElement* quad = getMeshDS()->FindElement(IDOfQuad);
   if (quad && quad->GetType() == SMDSAbs_Face && quad->NbNodes() == 4)
   {
     SMESH::NumericalFunctor_i* aNumericalFunctor =
@@ -1333,8 +1771,7 @@ CORBA::Long SMESH_MeshEditor_i::BestSplit (CORBA::Long                 IDOfQuad,
     else
       aCrit.reset(new SMESH::Controls::AspectRatio());
 
-    ::SMESH_MeshEditor anEditor (myMesh);
-    return anEditor.BestSplit(quad, aCrit);
+    return getEditor().BestSplit(quad, aCrit);
   }
   return -1;
 }
@@ -1355,13 +1792,11 @@ void SMESH_MeshEditor_i::SplitVolumesIntoTetra (SMESH::SMESH_IDSource_ptr elems,
 
   SMESH::long_array_var anElementsId = elems->GetIDs();
   TIDSortedElemSet elemSet;
-  arrayToSet( anElementsId, GetMeshDS(), elemSet, SMDSAbs_Volume );
+  arrayToSet( anElementsId, getMeshDS(), elemSet, SMDSAbs_Volume );
 
-  ::SMESH_MeshEditor anEditor (myMesh);
-  anEditor.SplitVolumesIntoTetra( elemSet, int( methodFlags ));
+  getEditor().SplitVolumesIntoTetra( elemSet, int( methodFlags ));
   myMesh->GetMeshDS()->Modified();
 
-  storeResult(anEditor);
 
 //   if ( myLastCreatedElems.length() ) - it does not influence Compute()
 //     myMesh->SetIsModified( true ); // issue 0020693
@@ -1454,7 +1889,7 @@ SMESH_MeshEditor_i::smooth(const SMESH::long_array &              IDsOfElements,
 {
   initData();
 
-  SMESHDS_Mesh* aMesh = GetMeshDS();
+  SMESHDS_Mesh* aMesh = getMeshDS();
 
   TIDSortedElemSet elements;
   arrayToSet(IDsOfElements, aMesh, elements, SMDSAbs_Face);
@@ -1470,14 +1905,12 @@ SMESH_MeshEditor_i::smooth(const SMESH::long_array &              IDsOfElements,
   if ( Method != SMESH::SMESH_MeshEditor::LAPLACIAN_SMOOTH )
     method = ::SMESH_MeshEditor::CENTROIDAL;
 
-  ::SMESH_MeshEditor anEditor( myMesh );
-  anEditor.Smooth(elements, fixedNodes, method,
+  getEditor().Smooth(elements, fixedNodes, method,
                   MaxNbOfIterations, MaxAspectRatio, IsParametric );
 
   myMesh->GetMeshDS()->Modified();
   myMesh->SetIsModified( true ); // issue 0020693
 
-  storeResult(anEditor);
 
   // Update Python script
   TPythonDump() << "isDone = " << this << "."
@@ -1538,7 +1971,7 @@ void SMESH_MeshEditor_i::RenumberNodes()
   // Update Python script
   TPythonDump() << this << ".RenumberNodes()";
 
-  GetMeshDS()->Renumber( true );
+  getMeshDS()->Renumber( true );
 }
 
 
@@ -1553,7 +1986,7 @@ void SMESH_MeshEditor_i::RenumberElements()
   // Update Python script
   TPythonDump() << this << ".RenumberElements()";
 
-  GetMeshDS()->Renumber( false );
+  getMeshDS()->Renumber( false );
 }
 
 //=======================================================================
@@ -1587,33 +2020,24 @@ SMESH_MeshEditor_i::rotationSweep(const SMESH::long_array & theIDsOfElements,
   initData();
 
   TIDSortedElemSet inElements, copyElements;
-  arrayToSet(theIDsOfElements, GetMeshDS(), inElements, theElementType);
+  arrayToSet(theIDsOfElements, getMeshDS(), inElements, theElementType);
 
   TIDSortedElemSet* workElements = & inElements;
-  TPreviewMesh      tmpMesh( SMDSAbs_Face );
-  SMESH_Mesh*       mesh = 0;
   bool              makeWalls=true;
-  if ( myPreviewMode )
+  if ( myIsPreviewMode )
   {
     SMDSAbs_ElementType select = SMDSAbs_All, avoid = SMDSAbs_Volume;
-    tmpMesh.Copy( inElements, copyElements, select, avoid );
-    mesh = &tmpMesh;
+    getPreviewMesh( SMDSAbs_Face )->Copy( inElements, copyElements, select, avoid );
     workElements = & copyElements;
     //makeWalls = false;
   }
-  else
-  {
-    mesh = myMesh;
-  }
 
   gp_Ax1 Ax1 (gp_Pnt( theAxis.x,  theAxis.y,  theAxis.z ),
               gp_Vec( theAxis.vx, theAxis.vy, theAxis.vz ));
 
-  ::SMESH_MeshEditor anEditor( mesh );
   ::SMESH_MeshEditor::PGroupIDs groupIds =
-      anEditor.RotationSweep (*workElements, Ax1, theAngleInRadians,
-                              theNbOfSteps, theTolerance, theMakeGroups, makeWalls);
-  storeResult(anEditor);
+      getEditor().RotationSweep (*workElements, Ax1, theAngleInRadians,
+                                 theNbOfSteps, theTolerance, theMakeGroups, makeWalls);
   myMesh->GetMeshDS()->Modified();
 
   //  myMesh->SetIsModified( true ); -- it does not influence Compute()
@@ -1632,7 +2056,7 @@ void SMESH_MeshEditor_i::RotationSweep(const SMESH::long_array & theIDsOfElement
                                        CORBA::Long               theNbOfSteps,
                                        CORBA::Double             theTolerance)
 {
-  if ( !myPreviewMode ) {
+  if ( !myIsPreviewMode ) {
     TPythonDump() << this << ".RotationSweep( "
                   << theIDsOfElements          << ", "
                   << theAxis                   << ", "
@@ -1668,7 +2092,7 @@ SMESH_MeshEditor_i::RotationSweepMakeGroups(const SMESH::long_array& theIDsOfEle
                                                theNbOfSteps,
                                                theTolerance,
                                                true);
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     DumpGroupsList(aPythonDump, aGroups);
     aPythonDump << this << ".RotationSweepMakeGroups( "
                 << theIDsOfElements        << ", "
@@ -1691,7 +2115,7 @@ void SMESH_MeshEditor_i::RotationSweepObject(SMESH::SMESH_IDSource_ptr theObject
                                              CORBA::Long               theNbOfSteps,
                                              CORBA::Double             theTolerance)
 {
-  if ( !myPreviewMode ) {
+  if ( !myIsPreviewMode ) {
     TPythonDump() << this << ".RotationSweepObject( "
                   << theObject << ", "
                   << theAxis << ", "
@@ -1719,7 +2143,7 @@ void SMESH_MeshEditor_i::RotationSweepObject1D(SMESH::SMESH_IDSource_ptr theObje
                                                CORBA::Long               theNbOfSteps,
                                                CORBA::Double             theTolerance)
 {
-  if ( !myPreviewMode ) {
+  if ( !myIsPreviewMode ) {
     TPythonDump() << this << ".RotationSweepObject1D( "
                   << theObject                 << ", "
                   << theAxis                   << ", "
@@ -1748,7 +2172,7 @@ void SMESH_MeshEditor_i::RotationSweepObject2D(SMESH::SMESH_IDSource_ptr theObje
                                                CORBA::Long               theNbOfSteps,
                                                CORBA::Double             theTolerance)
 {
-  if ( !myPreviewMode ) {
+  if ( !myIsPreviewMode ) {
     TPythonDump() << this << ".RotationSweepObject2D( "
                   << theObject                 << ", "
                   << theAxis                   << ", "
@@ -1787,7 +2211,7 @@ SMESH_MeshEditor_i::RotationSweepObjectMakeGroups(SMESH::SMESH_IDSource_ptr theO
                                                theNbOfSteps,
                                                theTolerance,
                                                true);
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     DumpGroupsList(aPythonDump, aGroups);
     aPythonDump << this << ".RotationSweepObjectMakeGroups( "
                 << theObject << ", "
@@ -1821,7 +2245,7 @@ SMESH_MeshEditor_i::RotationSweepObject1DMakeGroups(SMESH::SMESH_IDSource_ptr th
                                                theTolerance,
                                                true,
                                                SMDSAbs_Edge);
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     DumpGroupsList(aPythonDump, aGroups);
     aPythonDump << this << ".RotationSweepObject1DMakeGroups( "
                 << theObject                 << ", "
@@ -1855,7 +2279,7 @@ SMESH_MeshEditor_i::RotationSweepObject2DMakeGroups(SMESH::SMESH_IDSource_ptr th
                                                theTolerance,
                                                true,
                                                SMDSAbs_Face);
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     DumpGroupsList(aPythonDump, aGroups);
     aPythonDump << this << ".RotationSweepObject2DMakeGroups( "
                 << theObject                 << ", "
@@ -1887,7 +2311,7 @@ SMESH_MeshEditor_i::extrusionSweep(const SMESH::long_array & theIDsOfElements,
     OCC_CATCH_SIGNALS;
 #endif
     TIDSortedElemSet elements, copyElements;
-    arrayToSet(theIDsOfElements, GetMeshDS(), elements, theElementType);
+    arrayToSet(theIDsOfElements, getMeshDS(), elements, theElementType);
 
     const SMESH::PointStruct * P = &theStepVector.PS;
     gp_Vec stepVec( P->x, P->y, P->z );
@@ -1895,30 +2319,22 @@ SMESH_MeshEditor_i::extrusionSweep(const SMESH::long_array & theIDsOfElements,
     TIDSortedElemSet* workElements = & elements;
 
     SMDSAbs_ElementType aType = SMDSAbs_Face;
-    //::SMESH_MeshEditor::ExtrusionFlags aFlag = ::SMESH_MeshEditor::ExtrusionFlags::EXTRUSION_FLAG_BOUNDARY;
     if (theElementType == SMDSAbs_Node)
     {
       aType = SMDSAbs_Edge;
-      //aFlag = ::SMESH_MeshEditor::ExtrusionFlags::EXTRUSION_FLAG_SEW;
     }
-    TPreviewMesh      tmpMesh( aType );
-    SMESH_Mesh* mesh = myMesh;
-
-    if ( myPreviewMode ) {
+    if ( myIsPreviewMode ) {
       SMDSAbs_ElementType select = SMDSAbs_All, avoid = SMDSAbs_Volume;
-      tmpMesh.Copy( elements, copyElements, select, avoid );
-      mesh = &tmpMesh;
+      getPreviewMesh( aType )->Copy( elements, copyElements, select, avoid );
       workElements = & copyElements;
       theMakeGroups = false;
     }
 
     TElemOfElemListMap aHystory;
-    ::SMESH_MeshEditor anEditor( mesh );
     ::SMESH_MeshEditor::PGroupIDs groupIds = 
-        anEditor.ExtrusionSweep (*workElements, stepVec, theNbOfSteps, aHystory, theMakeGroups);
+        getEditor().ExtrusionSweep (*workElements, stepVec, theNbOfSteps, aHystory, theMakeGroups);
 
     myMesh->GetMeshDS()->Modified();
-    storeResult(anEditor);
 
     return theMakeGroups ? getGroups(groupIds.get()) : 0;
 
@@ -1939,7 +2355,7 @@ void SMESH_MeshEditor_i::ExtrusionSweep(const SMESH::long_array & theIDsOfElemen
                                         CORBA::Long               theNbOfSteps)
 {
   extrusionSweep (theIDsOfElements, theStepVector, theNbOfSteps, false );
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     TPythonDump() << this << ".ExtrusionSweep( "
                   << theIDsOfElements << ", " << theStepVector <<", " << TVar(theNbOfSteps) << " )";
   }
@@ -1955,7 +2371,7 @@ void SMESH_MeshEditor_i::ExtrusionSweep0D(const SMESH::long_array & theIDsOfElem
                                           CORBA::Long               theNbOfSteps)
 {
   extrusionSweep (theIDsOfElements, theStepVector, theNbOfSteps, false, SMDSAbs_Node );
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     TPythonDump() << this << ".ExtrusionSweep0D( "
                   << theIDsOfElements << ", " << theStepVector <<", " << TVar(theNbOfSteps)<< " )";
   }
@@ -1972,7 +2388,7 @@ void SMESH_MeshEditor_i::ExtrusionSweepObject(SMESH::SMESH_IDSource_ptr theObjec
 {
   SMESH::long_array_var anElementsId = theObject->GetIDs();
   extrusionSweep (anElementsId, theStepVector, theNbOfSteps, false );
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     TPythonDump() << this << ".ExtrusionSweepObject( "
                   << theObject << ", " << theStepVector << ", " << theNbOfSteps << " )";
   }
@@ -1989,7 +2405,7 @@ void SMESH_MeshEditor_i::ExtrusionSweepObject0D(SMESH::SMESH_IDSource_ptr theObj
 {
   SMESH::long_array_var anElementsId = theObject->GetIDs();
   extrusionSweep (anElementsId, theStepVector, theNbOfSteps, false, SMDSAbs_Node );
-  if ( !myPreviewMode ) {
+  if ( !myIsPreviewMode ) {
     TPythonDump() << this << ".ExtrusionSweepObject0D( "
                   << theObject << ", " << theStepVector << ", " << TVar( theNbOfSteps ) << " )";
   }
@@ -2006,7 +2422,7 @@ void SMESH_MeshEditor_i::ExtrusionSweepObject1D(SMESH::SMESH_IDSource_ptr theObj
 {
   SMESH::long_array_var anElementsId = theObject->GetIDs();
   extrusionSweep (anElementsId, theStepVector, theNbOfSteps, false, SMDSAbs_Edge );
-  if ( !myPreviewMode ) {
+  if ( !myIsPreviewMode ) {
     TPythonDump() << this << ".ExtrusionSweepObject1D( "
                   << theObject << ", " << theStepVector << ", " << TVar( theNbOfSteps ) << " )";
   }
@@ -2023,7 +2439,7 @@ void SMESH_MeshEditor_i::ExtrusionSweepObject2D(SMESH::SMESH_IDSource_ptr theObj
 {
   SMESH::long_array_var anElementsId = theObject->GetIDs();
   extrusionSweep (anElementsId, theStepVector, theNbOfSteps, false, SMDSAbs_Face );
-  if ( !myPreviewMode ) {
+  if ( !myIsPreviewMode ) {
     TPythonDump() << this << ".ExtrusionSweepObject2D( "
                   << theObject << ", " << theStepVector << ", " << TVar( theNbOfSteps ) << " )";
   }
@@ -2043,7 +2459,7 @@ SMESH_MeshEditor_i::ExtrusionSweepMakeGroups(const SMESH::long_array& theIDsOfEl
 
   SMESH::ListOfGroups* aGroups = extrusionSweep(theIDsOfElements, theStepVector, theNbOfSteps, true);
 
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     DumpGroupsList(aPythonDump, aGroups);
     aPythonDump << this << ".ExtrusionSweepMakeGroups( " << theIDsOfElements
                 << ", " << theStepVector <<", " << TVar( theNbOfSteps ) << " )";
@@ -2065,7 +2481,7 @@ SMESH_MeshEditor_i::ExtrusionSweepMakeGroups0D(const SMESH::long_array& theIDsOf
 
   SMESH::ListOfGroups* aGroups = extrusionSweep(theIDsOfElements, theStepVector, theNbOfSteps, true,SMDSAbs_Node);
 
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     DumpGroupsList(aPythonDump, aGroups);
     aPythonDump << this << ".ExtrusionSweepMakeGroups0D( " << theIDsOfElements
                 << ", " << theStepVector <<", " << TVar( theNbOfSteps ) << " )";
@@ -2088,7 +2504,7 @@ SMESH_MeshEditor_i::ExtrusionSweepObjectMakeGroups(SMESH::SMESH_IDSource_ptr the
   SMESH::long_array_var anElementsId = theObject->GetIDs();
   SMESH::ListOfGroups * aGroups = extrusionSweep(anElementsId, theStepVector, theNbOfSteps, true);
 
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     DumpGroupsList(aPythonDump, aGroups);
     aPythonDump << this << ".ExtrusionSweepObjectMakeGroups( " << theObject
                 << ", " << theStepVector << ", " << theNbOfSteps << " )";
@@ -2111,7 +2527,7 @@ SMESH_MeshEditor_i::ExtrusionSweepObject0DMakeGroups(SMESH::SMESH_IDSource_ptr t
   SMESH::long_array_var anElementsId = theObject->GetIDs();
   SMESH::ListOfGroups * aGroups = extrusionSweep(anElementsId, theStepVector,
                                                  theNbOfSteps, true, SMDSAbs_Node);
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     DumpGroupsList(aPythonDump, aGroups);
     aPythonDump << this << ".ExtrusionSweepObject0DMakeGroups( " << theObject
                 << ", " << theStepVector << ", " << TVar( theNbOfSteps ) << " )";
@@ -2134,7 +2550,7 @@ SMESH_MeshEditor_i::ExtrusionSweepObject1DMakeGroups(SMESH::SMESH_IDSource_ptr t
   SMESH::long_array_var anElementsId = theObject->GetIDs();
   SMESH::ListOfGroups * aGroups = extrusionSweep(anElementsId, theStepVector,
                                                  theNbOfSteps, true, SMDSAbs_Edge);
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     DumpGroupsList(aPythonDump, aGroups);
     aPythonDump << this << ".ExtrusionSweepObject1DMakeGroups( " << theObject
                 << ", " << theStepVector << ", " << TVar( theNbOfSteps ) << " )";
@@ -2157,7 +2573,7 @@ SMESH_MeshEditor_i::ExtrusionSweepObject2DMakeGroups(SMESH::SMESH_IDSource_ptr t
   SMESH::long_array_var anElementsId = theObject->GetIDs();
   SMESH::ListOfGroups * aGroups = extrusionSweep(anElementsId, theStepVector,
                                                  theNbOfSteps, true, SMDSAbs_Face);
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     DumpGroupsList(aPythonDump, aGroups);
     aPythonDump << this << ".ExtrusionSweepObject2DMakeGroups( " << theObject
                 << ", " << theStepVector << ", " << TVar( theNbOfSteps ) << " )";
@@ -2182,17 +2598,15 @@ SMESH_MeshEditor_i::advancedExtrusion(const SMESH::long_array & theIDsOfElements
   initData();
 
   TIDSortedElemSet elements;
-  arrayToSet(theIDsOfElements, GetMeshDS(), elements);
+  arrayToSet(theIDsOfElements, getMeshDS(), elements);
 
   const SMESH::PointStruct * P = &theStepVector.PS;
   gp_Vec stepVec( P->x, P->y, P->z );
 
-  ::SMESH_MeshEditor anEditor( myMesh );
   TElemOfElemListMap aHystory;
   ::SMESH_MeshEditor::PGroupIDs groupIds =
-      anEditor.ExtrusionSweep (elements, stepVec, theNbOfSteps, aHystory,
-                               theMakeGroups, theExtrFlags, theSewTolerance);
-  storeResult(anEditor);
+      getEditor().ExtrusionSweep (elements, stepVec, theNbOfSteps, aHystory,
+                                  theMakeGroups, theExtrFlags, theSewTolerance);
 
   return theMakeGroups ? getGroups(groupIds.get()) : 0;
 }
@@ -2208,7 +2622,7 @@ void SMESH_MeshEditor_i::AdvancedExtrusion(const SMESH::long_array & theIDsOfEle
                                            CORBA::Long               theExtrFlags,
                                            CORBA::Double             theSewTolerance)
 {
-  if ( !myPreviewMode ) {
+  if ( !myIsPreviewMode ) {
     TPythonDump() << "stepVector = " << theStepVector;
     TPythonDump() << this << ".AdvancedExtrusion("
                   << theIDsOfElements
@@ -2236,7 +2650,7 @@ SMESH_MeshEditor_i::AdvancedExtrusionMakeGroups(const SMESH::long_array& theIDsO
                                                 CORBA::Long              theExtrFlags,
                                                 CORBA::Double            theSewTolerance)
 {
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     TPythonDump() << "stepVector = " << theStepVector;
   }
   TPythonDump aPythonDump; // it is here to prevent dump of GetGroups()
@@ -2248,7 +2662,7 @@ SMESH_MeshEditor_i::AdvancedExtrusionMakeGroups(const SMESH::long_array& theIDsO
                                                      theSewTolerance,
                                                      true);
 
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     DumpGroupsList(aPythonDump, aGroups);
     aPythonDump << this << ".AdvancedExtrusionMakeGroups("
                 << theIDsOfElements
@@ -2325,7 +2739,7 @@ SMESH_MeshEditor_i::extrusionAlongPath(const SMESH::long_array &   theIDsOfEleme
   }
 
   TIDSortedElemSet elements;
-  arrayToSet(theIDsOfElements, GetMeshDS(), elements, theElementType);
+  arrayToSet(theIDsOfElements, getMeshDS(), elements, theElementType);
 
   list<double> angles;
   for (int i = 0; i < theAngles.length(); i++) {
@@ -2336,13 +2750,11 @@ SMESH_MeshEditor_i::extrusionAlongPath(const SMESH::long_array &   theIDsOfEleme
 
   int nbOldGroups = myMesh->NbGroup();
 
-  ::SMESH_MeshEditor anEditor( myMesh );
   ::SMESH_MeshEditor::Extrusion_Error error =
-      anEditor.ExtrusionAlongTrack( elements, aSubMesh, nodeStart,
+      getEditor().ExtrusionAlongTrack( elements, aSubMesh, nodeStart,
                                     theHasAngles, angles, false,
                                     theHasRefPoint, refPnt, theMakeGroups );
   myMesh->GetMeshDS()->Modified();
-  storeResult(anEditor);
   theError = convExtrError( error );
 
   if ( theMakeGroups ) {
@@ -2390,22 +2802,18 @@ SMESH_MeshEditor_i::extrusionAlongPathX(const SMESH::long_array &  IDsOfElements
   }
 
   TIDSortedElemSet elements, copyElements;
-  arrayToSet(IDsOfElements, GetMeshDS(), elements, ElementType);
+  arrayToSet(IDsOfElements, getMeshDS(), elements, ElementType);
 
   TIDSortedElemSet* workElements = &elements;
-  TPreviewMesh      tmpMesh( SMDSAbs_Face );
-  SMESH_Mesh*       mesh = myMesh;
 
-  if ( myPreviewMode )
+  if ( myIsPreviewMode )
   {
     SMDSAbs_ElementType select = SMDSAbs_All, avoid = SMDSAbs_Volume;
-    tmpMesh.Copy( elements, copyElements, select, avoid );
-    mesh = &tmpMesh;
+    getPreviewMesh( SMDSAbs_Face )->Copy( elements, copyElements, select, avoid );
     workElements = & copyElements;
     MakeGroups = false;
   }
 
-  ::SMESH_MeshEditor anEditor( mesh );
   ::SMESH_MeshEditor::Extrusion_Error error;
 
   if ( SMESH_Mesh_i* aMeshImp = SMESH::DownCast<SMESH_Mesh_i*>( Path ))
@@ -2417,9 +2825,9 @@ SMESH_MeshEditor_i::extrusionAlongPathX(const SMESH::long_array &  IDsOfElements
       Error = SMESH::SMESH_MeshEditor::EXTR_BAD_STARTING_NODE;
       return EmptyGr;
     }
-    error = anEditor.ExtrusionAlongTrack( *workElements, &(aMeshImp->GetImpl()), aNodeStart,
-                                          HasAngles, angles, LinearVariation,
-                                          HasRefPoint, refPnt, MakeGroups );
+    error = getEditor().ExtrusionAlongTrack( *workElements, &(aMeshImp->GetImpl()), aNodeStart,
+                                             HasAngles, angles, LinearVariation,
+                                             HasRefPoint, refPnt, MakeGroups );
     myMesh->GetMeshDS()->Modified();
   }
   else if ( SMESH_subMesh_i* aSubMeshImp = SMESH::DownCast<SMESH_subMesh_i*>( Path ))
@@ -2435,9 +2843,9 @@ SMESH_MeshEditor_i::extrusionAlongPathX(const SMESH::long_array &  IDsOfElements
     }
     SMESH_subMesh* aSubMesh =
       aMeshImp->GetImpl().GetSubMeshContaining(aSubMeshImp->GetId());
-    error = anEditor.ExtrusionAlongTrack( *workElements, aSubMesh, aNodeStart,
-                                          HasAngles, angles, LinearVariation,
-                                          HasRefPoint, refPnt, MakeGroups );
+    error = getEditor().ExtrusionAlongTrack( *workElements, aSubMesh, aNodeStart,
+                                             HasAngles, angles, LinearVariation,
+                                             HasRefPoint, refPnt, MakeGroups );
     myMesh->GetMeshDS()->Modified();
   }
   else if ( SMESH::DownCast<SMESH_Group_i*>( Path ))
@@ -2452,7 +2860,6 @@ SMESH_MeshEditor_i::extrusionAlongPathX(const SMESH::long_array &  IDsOfElements
     return EmptyGr;
   }
 
-  storeResult(anEditor);
   Error = convExtrError( error );
 
   if ( MakeGroups ) {
@@ -2481,7 +2888,7 @@ SMESH_MeshEditor_i::ExtrusionAlongPath(const SMESH::long_array &   theIDsOfEleme
                                        const SMESH::PointStruct &  theRefPoint)
 {
   MESSAGE("ExtrusionAlongPath");
-  if ( !myPreviewMode ) {
+  if ( !myIsPreviewMode ) {
     TPythonDump() << "error = " << this << ".ExtrusionAlongPath( "
                   << theIDsOfElements << ", "
                   << thePathMesh      << ", "
@@ -2523,7 +2930,7 @@ SMESH_MeshEditor_i::ExtrusionAlongPathObject(SMESH::SMESH_IDSource_ptr   theObje
                                              CORBA::Boolean              theHasRefPoint,
                                              const SMESH::PointStruct &  theRefPoint)
 {
-  if ( !myPreviewMode ) {
+  if ( !myIsPreviewMode ) {
     TPythonDump() << "error = " << this << ".ExtrusionAlongPathObject( "
                   << theObject        << ", "
                   << thePathMesh      << ", "
@@ -2566,7 +2973,7 @@ SMESH_MeshEditor_i::ExtrusionAlongPathObject1D(SMESH::SMESH_IDSource_ptr   theOb
                                                CORBA::Boolean              theHasRefPoint,
                                                const SMESH::PointStruct &  theRefPoint)
 {
-  if ( !myPreviewMode ) {
+  if ( !myIsPreviewMode ) {
     TPythonDump() << "error = " << this << ".ExtrusionAlongPathObject1D( "
                   << theObject        << ", "
                   << thePathMesh      << ", "
@@ -2610,7 +3017,7 @@ SMESH_MeshEditor_i::ExtrusionAlongPathObject2D(SMESH::SMESH_IDSource_ptr   theOb
                                                CORBA::Boolean              theHasRefPoint,
                                                const SMESH::PointStruct &  theRefPoint)
 {
-  if ( !myPreviewMode ) {
+  if ( !myIsPreviewMode ) {
     TPythonDump() << "error = " << this << ".ExtrusionAlongPathObject2D( "
                   << theObject        << ", "
                   << thePathMesh      << ", "
@@ -2668,7 +3075,7 @@ SMESH_MeshEditor_i::ExtrusionAlongPathMakeGroups(const SMESH::long_array&   theI
                                                        theRefPoint,
                                                        true,
                                                        Error);
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     bool isDumpGroups = aGroups && aGroups->length() > 0;
     if (isDumpGroups)
       aPythonDump << "(" << aGroups << ", error)";
@@ -2720,7 +3127,7 @@ ExtrusionAlongPathObjectMakeGroups(SMESH::SMESH_IDSource_ptr  theObject,
                                                       true,
                                                       Error);
 
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     bool isDumpGroups = aGroups && aGroups->length() > 0;
     if (isDumpGroups)
       aPythonDump << "(" << aGroups << ", error)";
@@ -2773,7 +3180,7 @@ ExtrusionAlongPathObject1DMakeGroups(SMESH::SMESH_IDSource_ptr  theObject,
                                                       Error,
                                                       SMDSAbs_Edge);
 
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     bool isDumpGroups = aGroups && aGroups->length() > 0;
     if (isDumpGroups)
       aPythonDump << "(" << aGroups << ", error)";
@@ -2826,7 +3233,7 @@ ExtrusionAlongPathObject2DMakeGroups(SMESH::SMESH_IDSource_ptr  theObject,
                                                       Error,
                                                       SMDSAbs_Face);
 
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     bool isDumpGroups = aGroups && aGroups->length() > 0;
     if (isDumpGroups)
       aPythonDump << "(" << aGroups << ", error)";
@@ -2882,7 +3289,7 @@ ExtrusionAlongPathObjX(SMESH::SMESH_IDSource_ptr  Object,
                                                       (SMDSAbs_ElementType)ElemType,
                                                       Error);
 
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     bool isDumpGroups = aGroups && aGroups->length() > 0;
     if (isDumpGroups)
       aPythonDump << "(" << *aGroups << ", error)";
@@ -2939,7 +3346,7 @@ ExtrusionAlongPathX(const SMESH::long_array&   IDsOfElements,
                                                       (SMDSAbs_ElementType)ElemType,
                                                       Error);
 
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     bool isDumpGroups = aGroups && aGroups->length() > 0;
     if (isDumpGroups)
       aPythonDump << "(" << *aGroups << ", error)";
@@ -3071,32 +3478,26 @@ SMESH_MeshEditor_i::mirror(TIDSortedElemSet &                  theElements,
   }
 
   TIDSortedElemSet  copyElements;
-  TPreviewMesh      tmpMesh;
   TIDSortedElemSet* workElements = & theElements;
-  SMESH_Mesh*       mesh = myMesh;
 
-  if ( myPreviewMode )
+  if ( myIsPreviewMode )
   {
-    tmpMesh.Copy( theElements, copyElements);
+    TPreviewMesh * tmpMesh = getPreviewMesh();
+    tmpMesh->Copy( theElements, copyElements);
     if ( !theCopy && !theTargetMesh )
     {
       TIDSortedElemSet elemsAround, elemsAroundCopy;
-      getElementsAround( theElements, GetMeshDS(), elemsAround );
-      tmpMesh.Copy( elemsAround, elemsAroundCopy);
+      getElementsAround( theElements, getMeshDS(), elemsAround );
+      tmpMesh->Copy( elemsAround, elemsAroundCopy);
     }
-    mesh = &tmpMesh;
     workElements = & copyElements;
     theMakeGroups = false;
   }
 
-  ::SMESH_MeshEditor anEditor( mesh );
   ::SMESH_MeshEditor::PGroupIDs groupIds =
-      anEditor.Transform (*workElements, aTrsf, theCopy, theMakeGroups, theTargetMesh);
+      getEditor().Transform (*workElements, aTrsf, theCopy, theMakeGroups, theTargetMesh);
 
-  if(theCopy || myPreviewMode)
-    storeResult(anEditor); // store preview data or new elements
-
-  if ( !myPreviewMode )
+  if ( theCopy && !myIsPreviewMode)
   {
     if ( theTargetMesh )
     {
@@ -3121,7 +3522,7 @@ void SMESH_MeshEditor_i::Mirror(const SMESH::long_array &           theIDsOfElem
                                 SMESH::SMESH_MeshEditor::MirrorType theMirrorType,
                                 CORBA::Boolean                      theCopy)
 {
-  if ( !myPreviewMode ) {
+  if ( !myIsPreviewMode ) {
     TPythonDump() << this << ".Mirror( "
                   << theIDsOfElements              << ", "
                   << theAxis                       << ", "
@@ -3131,7 +3532,7 @@ void SMESH_MeshEditor_i::Mirror(const SMESH::long_array &           theIDsOfElem
   if ( theIDsOfElements.length() > 0 )
   {
     TIDSortedElemSet elements;
-    arrayToSet(theIDsOfElements, GetMeshDS(), elements);
+    arrayToSet(theIDsOfElements, getMeshDS(), elements);
     mirror(elements, theAxis, theMirrorType, theCopy, false);
   }
 }
@@ -3147,7 +3548,7 @@ void SMESH_MeshEditor_i::MirrorObject(SMESH::SMESH_IDSource_ptr           theObj
                                       SMESH::SMESH_MeshEditor::MirrorType theMirrorType,
                                       CORBA::Boolean                      theCopy)
 {
-  if ( !myPreviewMode ) {
+  if ( !myIsPreviewMode ) {
     TPythonDump() << this << ".MirrorObject( "
                   << theObject                     << ", "
                   << theAxis                       << ", "
@@ -3156,9 +3557,9 @@ void SMESH_MeshEditor_i::MirrorObject(SMESH::SMESH_IDSource_ptr           theObj
   }
   TIDSortedElemSet elements;
 
-  bool emptyIfIsMesh = myPreviewMode ? false : true;
+  bool emptyIfIsMesh = myIsPreviewMode ? false : true;
 
-  if (idSourceToSet(theObject, GetMeshDS(), elements, SMDSAbs_All, emptyIfIsMesh))
+  if (idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, emptyIfIsMesh))
     mirror(elements, theAxis, theMirrorType, theCopy, false);
 }
 
@@ -3178,10 +3579,10 @@ SMESH_MeshEditor_i::MirrorMakeGroups(const SMESH::long_array&            theIDsO
   if ( theIDsOfElements.length() > 0 )
   {
     TIDSortedElemSet elements;
-    arrayToSet(theIDsOfElements, GetMeshDS(), elements);
+    arrayToSet(theIDsOfElements, getMeshDS(), elements);
     aGroups = mirror(elements, theMirror, theMirrorType, true, true);
   }
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     DumpGroupsList(aPythonDump, aGroups);
     aPythonDump << this << ".MirrorMakeGroups( "
                 << theIDsOfElements              << ", "
@@ -3205,10 +3606,10 @@ SMESH_MeshEditor_i::MirrorObjectMakeGroups(SMESH::SMESH_IDSource_ptr           t
 
   SMESH::ListOfGroups * aGroups = 0;
   TIDSortedElemSet elements;
-  if ( idSourceToSet(theObject, GetMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
+  if ( idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
     aGroups = mirror(elements, theMirror, theMirrorType, true, true);
 
-  if (!myPreviewMode)
+  if (!myIsPreviewMode)
   {
     DumpGroupsList(aPythonDump,aGroups);
     aPythonDump << this << ".MirrorObjectMakeGroups( "
@@ -3243,13 +3644,13 @@ SMESH_MeshEditor_i::MirrorMakeMesh(const SMESH::long_array&            theIDsOfE
     if (mesh_i && theIDsOfElements.length() > 0 )
     {
       TIDSortedElemSet elements;
-      arrayToSet(theIDsOfElements, GetMeshDS(), elements);
+      arrayToSet(theIDsOfElements, getMeshDS(), elements);
       mirror(elements, theMirror, theMirrorType,
              false, theCopyGroups, & mesh_i->GetImpl());
       mesh_i->CreateGroupServants();
     }
 
-    if (!myPreviewMode) {
+    if (!myIsPreviewMode) {
       pydump << mesh << " = " << this << ".MirrorMakeMesh( "
              << theIDsOfElements              << ", "
              << theMirror                     << ", "
@@ -3260,7 +3661,7 @@ SMESH_MeshEditor_i::MirrorMakeMesh(const SMESH::long_array&            theIDsOfE
   }
 
   //dump "GetGroups"
-  if (!myPreviewMode && mesh_i)
+  if (!myIsPreviewMode && mesh_i)
     mesh_i->GetGroups();
 
   return mesh._retn();
@@ -3289,13 +3690,13 @@ SMESH_MeshEditor_i::MirrorObjectMakeMesh(SMESH::SMESH_IDSource_ptr           the
     mesh_i = SMESH::DownCast<SMESH_Mesh_i*>( mesh );
     TIDSortedElemSet elements;
     if ( mesh_i &&
-         idSourceToSet(theObject, GetMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
+         idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
     {
       mirror(elements, theMirror, theMirrorType,
              false, theCopyGroups, & mesh_i->GetImpl());
       mesh_i->CreateGroupServants();
     }
-    if (!myPreviewMode) {
+    if (!myIsPreviewMode) {
       pydump << mesh << " = " << this << ".MirrorObjectMakeMesh( "
              << theObject                     << ", "
              << theMirror                     << ", "
@@ -3306,7 +3707,7 @@ SMESH_MeshEditor_i::MirrorObjectMakeMesh(SMESH::SMESH_IDSource_ptr           the
   }
 
   //dump "GetGroups"
-  if (!myPreviewMode && mesh_i)
+  if (!myIsPreviewMode && mesh_i)
     mesh_i->GetGroups();
 
   return mesh._retn();
@@ -3335,31 +3736,25 @@ SMESH_MeshEditor_i::translate(TIDSortedElemSet        & theElements,
 
   TIDSortedElemSet  copyElements;
   TIDSortedElemSet* workElements = &theElements;
-  TPreviewMesh      tmpMesh;
-  SMESH_Mesh*       mesh = myMesh;
 
-  if ( myPreviewMode )
+  if ( myIsPreviewMode )
   {
-    tmpMesh.Copy( theElements, copyElements);
+    TPreviewMesh * tmpMesh = getPreviewMesh();
+    tmpMesh->Copy( theElements, copyElements);
     if ( !theCopy && !theTargetMesh )
     {
       TIDSortedElemSet elemsAround, elemsAroundCopy;
-      getElementsAround( theElements, GetMeshDS(), elemsAround );
-      tmpMesh.Copy( elemsAround, elemsAroundCopy);
+      getElementsAround( theElements, getMeshDS(), elemsAround );
+      tmpMesh->Copy( elemsAround, elemsAroundCopy);
     }
-    mesh = &tmpMesh;
     workElements = & copyElements;
     theMakeGroups = false;
   }
 
-  ::SMESH_MeshEditor anEditor( mesh );
   ::SMESH_MeshEditor::PGroupIDs groupIds =
-      anEditor.Transform (*workElements, aTrsf, theCopy, theMakeGroups, theTargetMesh);
-
-  if(theCopy || myPreviewMode)
-    storeResult(anEditor);
+      getEditor().Transform (*workElements, aTrsf, theCopy, theMakeGroups, theTargetMesh);
 
-  if ( !myPreviewMode )
+  if ( theCopy && !myIsPreviewMode )
   {
     if ( theTargetMesh )
     {
@@ -3384,7 +3779,7 @@ void SMESH_MeshEditor_i::Translate(const SMESH::long_array & theIDsOfElements,
                                    const SMESH::DirStruct &  theVector,
                                    CORBA::Boolean            theCopy)
 {
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     TPythonDump() << this << ".Translate( "
                   << theIDsOfElements << ", "
                   << theVector        << ", "
@@ -3392,7 +3787,7 @@ void SMESH_MeshEditor_i::Translate(const SMESH::long_array & theIDsOfElements,
   }
   if (theIDsOfElements.length()) {
     TIDSortedElemSet elements;
-    arrayToSet(theIDsOfElements, GetMeshDS(), elements);
+    arrayToSet(theIDsOfElements, getMeshDS(), elements);
     translate(elements, theVector, theCopy, false);
   }
 }
@@ -3406,7 +3801,7 @@ void SMESH_MeshEditor_i::TranslateObject(SMESH::SMESH_IDSource_ptr theObject,
                                          const SMESH::DirStruct &  theVector,
                                          CORBA::Boolean            theCopy)
 {
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     TPythonDump() << this << ".TranslateObject( "
                   << theObject << ", "
                   << theVector << ", "
@@ -3414,9 +3809,9 @@ void SMESH_MeshEditor_i::TranslateObject(SMESH::SMESH_IDSource_ptr theObject,
   }
   TIDSortedElemSet elements;
 
-  bool emptyIfIsMesh = myPreviewMode ? false : true;
+  bool emptyIfIsMesh = myIsPreviewMode ? false : true;
   
-  if (idSourceToSet(theObject, GetMeshDS(), elements, SMDSAbs_All, emptyIfIsMesh))
+  if (idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, emptyIfIsMesh))
     translate(elements, theVector, theCopy, false);
 }
 
@@ -3434,10 +3829,10 @@ SMESH_MeshEditor_i::TranslateMakeGroups(const SMESH::long_array& theIDsOfElement
   SMESH::ListOfGroups * aGroups = 0;
   if (theIDsOfElements.length()) {
     TIDSortedElemSet elements;
-    arrayToSet(theIDsOfElements, GetMeshDS(), elements);
+    arrayToSet(theIDsOfElements, getMeshDS(), elements);
     aGroups = translate(elements,theVector,true,true);
   }
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     DumpGroupsList(aPythonDump, aGroups);
     aPythonDump << this << ".TranslateMakeGroups( "
                 << theIDsOfElements << ", "
@@ -3459,10 +3854,10 @@ SMESH_MeshEditor_i::TranslateObjectMakeGroups(SMESH::SMESH_IDSource_ptr theObjec
 
   SMESH::ListOfGroups * aGroups = 0;
   TIDSortedElemSet elements;
-  if (idSourceToSet(theObject, GetMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
+  if (idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
     aGroups = translate(elements, theVector, true, true);
 
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     DumpGroupsList(aPythonDump, aGroups);
     aPythonDump << this << ".TranslateObjectMakeGroups( "
                 << theObject << ", "
@@ -3496,12 +3891,12 @@ SMESH_MeshEditor_i::TranslateMakeMesh(const SMESH::long_array& theIDsOfElements,
     if ( mesh_i && theIDsOfElements.length() )
     {
       TIDSortedElemSet elements;
-      arrayToSet(theIDsOfElements, GetMeshDS(), elements);
+      arrayToSet(theIDsOfElements, getMeshDS(), elements);
       translate(elements, theVector, false, theCopyGroups, & mesh_i->GetImpl());
       mesh_i->CreateGroupServants();
     }
 
-    if ( !myPreviewMode ) {
+    if ( !myIsPreviewMode ) {
       pydump << mesh << " = " << this << ".TranslateMakeMesh( "
              << theIDsOfElements << ", "
              << theVector        << ", "
@@ -3511,7 +3906,7 @@ SMESH_MeshEditor_i::TranslateMakeMesh(const SMESH::long_array& theIDsOfElements,
   }
 
   //dump "GetGroups"
-  if (!myPreviewMode && mesh_i)
+  if (!myIsPreviewMode && mesh_i)
     mesh_i->GetGroups();
 
   return mesh._retn();
@@ -3539,12 +3934,12 @@ SMESH_MeshEditor_i::TranslateObjectMakeMesh(SMESH::SMESH_IDSource_ptr theObject,
 
     TIDSortedElemSet elements;
     if ( mesh_i &&
-      idSourceToSet(theObject, GetMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
+      idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
     {
       translate(elements, theVector,false, theCopyGroups, & mesh_i->GetImpl());
       mesh_i->CreateGroupServants();
     }
-    if ( !myPreviewMode ) {
+    if ( !myIsPreviewMode ) {
       pydump << mesh << " = " << this << ".TranslateObjectMakeMesh( "
              << theObject     << ", "
              << theVector     << ", "
@@ -3554,7 +3949,7 @@ SMESH_MeshEditor_i::TranslateObjectMakeMesh(SMESH::SMESH_IDSource_ptr theObject,
   }
 
   // dump "GetGroups"
-  if (!myPreviewMode && mesh_i)
+  if (!myIsPreviewMode && mesh_i)
     mesh_i->GetGroups();
 
   return mesh._retn();
@@ -3586,30 +3981,23 @@ SMESH_MeshEditor_i::rotate(TIDSortedElemSet &        theElements,
 
   TIDSortedElemSet  copyElements;
   TIDSortedElemSet* workElements = &theElements;
-  TPreviewMesh      tmpMesh;
-  SMESH_Mesh*       mesh = myMesh;
-
-  if ( myPreviewMode ) {
-    tmpMesh.Copy( theElements, copyElements );
+  if ( myIsPreviewMode ) {
+    TPreviewMesh * tmpMesh = getPreviewMesh();
+    tmpMesh->Copy( theElements, copyElements );
     if ( !theCopy && !theTargetMesh )
     {
       TIDSortedElemSet elemsAround, elemsAroundCopy;
-      getElementsAround( theElements, GetMeshDS(), elemsAround );
-      tmpMesh.Copy( elemsAround, elemsAroundCopy);
+      getElementsAround( theElements, getMeshDS(), elemsAround );
+      tmpMesh->Copy( elemsAround, elemsAroundCopy);
     }
-    mesh = &tmpMesh;
     workElements = &copyElements;
     theMakeGroups = false;
   }
 
-  ::SMESH_MeshEditor anEditor( mesh );
   ::SMESH_MeshEditor::PGroupIDs groupIds =
-      anEditor.Transform (*workElements, aTrsf, theCopy, theMakeGroups, theTargetMesh);
+      getEditor().Transform (*workElements, aTrsf, theCopy, theMakeGroups, theTargetMesh);
 
-  if(theCopy || myPreviewMode)
-    storeResult(anEditor);
-
-  if ( !myPreviewMode )
+  if ( theCopy && !myIsPreviewMode)
   {
     if ( theTargetMesh )
     {
@@ -3635,7 +4023,7 @@ void SMESH_MeshEditor_i::Rotate(const SMESH::long_array & theIDsOfElements,
                                 CORBA::Double             theAngle,
                                 CORBA::Boolean            theCopy)
 {
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     TPythonDump() << this << ".Rotate( "
                   << theIDsOfElements << ", "
                   << theAxis          << ", "
@@ -3645,7 +4033,7 @@ void SMESH_MeshEditor_i::Rotate(const SMESH::long_array & theIDsOfElements,
   if (theIDsOfElements.length() > 0)
   {
     TIDSortedElemSet elements;
-    arrayToSet(theIDsOfElements, GetMeshDS(), elements);
+    arrayToSet(theIDsOfElements, getMeshDS(), elements);
     rotate(elements,theAxis,theAngle,theCopy,false);
   }
 }
@@ -3660,7 +4048,7 @@ void SMESH_MeshEditor_i::RotateObject(SMESH::SMESH_IDSource_ptr theObject,
                                       CORBA::Double             theAngle,
                                       CORBA::Boolean            theCopy)
 {
-  if ( !myPreviewMode ) {
+  if ( !myIsPreviewMode ) {
     TPythonDump() << this << ".RotateObject( "
                   << theObject        << ", "
                   << theAxis          << ", "
@@ -3668,8 +4056,8 @@ void SMESH_MeshEditor_i::RotateObject(SMESH::SMESH_IDSource_ptr theObject,
                   << theCopy          << " )";
   }
   TIDSortedElemSet elements;
-  bool emptyIfIsMesh = myPreviewMode ? false : true;
-  if (idSourceToSet(theObject, GetMeshDS(), elements, SMDSAbs_All, emptyIfIsMesh))
+  bool emptyIfIsMesh = myIsPreviewMode ? false : true;
+  if (idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, emptyIfIsMesh))
     rotate(elements,theAxis,theAngle,theCopy,false);
 }
 
@@ -3689,10 +4077,10 @@ SMESH_MeshEditor_i::RotateMakeGroups(const SMESH::long_array& theIDsOfElements,
   if (theIDsOfElements.length() > 0)
   {
     TIDSortedElemSet elements;
-    arrayToSet(theIDsOfElements, GetMeshDS(), elements);
+    arrayToSet(theIDsOfElements, getMeshDS(), elements);
     aGroups = rotate(elements,theAxis,theAngle,true,true);
   }
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     DumpGroupsList(aPythonDump, aGroups);
     aPythonDump << this << ".RotateMakeGroups( "
                 << theIDsOfElements << ", "
@@ -3716,10 +4104,10 @@ SMESH_MeshEditor_i::RotateObjectMakeGroups(SMESH::SMESH_IDSource_ptr theObject,
 
   SMESH::ListOfGroups * aGroups = 0;
   TIDSortedElemSet elements;
-  if (idSourceToSet(theObject, GetMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
+  if (idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
     aGroups = rotate(elements, theAxis, theAngle, true, true);
 
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     DumpGroupsList(aPythonDump, aGroups);
     aPythonDump << this << ".RotateObjectMakeGroups( "
                 << theObject        << ", "
@@ -3755,12 +4143,12 @@ SMESH_MeshEditor_i::RotateMakeMesh(const SMESH::long_array& theIDsOfElements,
     if ( mesh_i && theIDsOfElements.length() > 0 )
     {
       TIDSortedElemSet elements;
-      arrayToSet(theIDsOfElements, GetMeshDS(), elements);
+      arrayToSet(theIDsOfElements, getMeshDS(), elements);
       rotate(elements, theAxis, theAngleInRadians,
              false, theCopyGroups, & mesh_i->GetImpl());
       mesh_i->CreateGroupServants();
     }
-    if ( !myPreviewMode ) {
+    if ( !myIsPreviewMode ) {
       pydump << mesh << " = " << this << ".RotateMakeMesh( "
              << theIDsOfElements          << ", "
              << theAxis                   << ", "
@@ -3771,7 +4159,7 @@ SMESH_MeshEditor_i::RotateMakeMesh(const SMESH::long_array& theIDsOfElements,
   }
 
   // dump "GetGroups"
-  if (!myPreviewMode && mesh_i && theIDsOfElements.length() > 0 )
+  if (!myIsPreviewMode && mesh_i && theIDsOfElements.length() > 0 )
     mesh_i->GetGroups();
 
   return mesh._retn();
@@ -3801,13 +4189,13 @@ SMESH_MeshEditor_i::RotateObjectMakeMesh(SMESH::SMESH_IDSource_ptr theObject,
 
     TIDSortedElemSet elements;
     if (mesh_i &&
-        idSourceToSet(theObject, GetMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
+        idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, /*emptyIfIsMesh=*/1))
     {
       rotate(elements, theAxis, theAngleInRadians,
              false, theCopyGroups, & mesh_i->GetImpl());
       mesh_i->CreateGroupServants();
     }
-    if ( !myPreviewMode ) {
+    if ( !myIsPreviewMode ) {
       pydump << mesh << " = " << this << ".RotateObjectMakeMesh( "
              << theObject                 << ", "
              << theAxis                   << ", "
@@ -3818,7 +4206,7 @@ SMESH_MeshEditor_i::RotateObjectMakeMesh(SMESH::SMESH_IDSource_ptr theObject,
   }
 
   // dump "GetGroups"
-  if (!myPreviewMode && mesh_i)
+  if (!myIsPreviewMode && mesh_i)
     mesh_i->GetGroups();
 
   return mesh._retn();
@@ -3847,8 +4235,8 @@ SMESH_MeshEditor_i::scale(SMESH::SMESH_IDSource_ptr  theObject,
     theCopy = false;
 
   TIDSortedElemSet elements;
-  bool emptyIfIsMesh = myPreviewMode ? false : true;
-  if ( !idSourceToSet(theObject, GetMeshDS(), elements, SMDSAbs_All, emptyIfIsMesh))
+  bool emptyIfIsMesh = myIsPreviewMode ? false : true;
+  if ( !idSourceToSet(theObject, getMeshDS(), elements, SMDSAbs_All, emptyIfIsMesh))
     return 0;
 
   double S[3] = {
@@ -3863,32 +4251,25 @@ SMESH_MeshEditor_i::scale(SMESH::SMESH_IDSource_ptr  theObject,
                    0,    0,    S[2], thePoint.z * (1-S[2]),   tol, tol);
 
   TIDSortedElemSet  copyElements;
-  TPreviewMesh      tmpMesh;
   TIDSortedElemSet* workElements = &elements;
-  SMESH_Mesh*       mesh = myMesh;
-  
-  if ( myPreviewMode )
+  if ( myIsPreviewMode )
   {
-    tmpMesh.Copy( elements, copyElements);
+    TPreviewMesh * tmpMesh = getPreviewMesh();
+    tmpMesh->Copy( elements, copyElements);
     if ( !theCopy && !theTargetMesh )
     {
       TIDSortedElemSet elemsAround, elemsAroundCopy;
-      getElementsAround( elements, GetMeshDS(), elemsAround );
-      tmpMesh.Copy( elemsAround, elemsAroundCopy);
+      getElementsAround( elements, getMeshDS(), elemsAround );
+      tmpMesh->Copy( elemsAround, elemsAroundCopy);
     }
-    mesh = &tmpMesh;
     workElements = & copyElements;
     theMakeGroups = false;
   }
 
-  ::SMESH_MeshEditor anEditor( mesh );
   ::SMESH_MeshEditor::PGroupIDs groupIds =
-      anEditor.Transform (*workElements, aTrsf, theCopy, theMakeGroups, theTargetMesh);
+      getEditor().Transform (*workElements, aTrsf, theCopy, theMakeGroups, theTargetMesh);
 
-  if(theCopy || myPreviewMode )
-    storeResult(anEditor);
-
-  if ( !myPreviewMode )
+  if ( theCopy && !myIsPreviewMode )
   {
     if ( theTargetMesh )
     {
@@ -3914,7 +4295,7 @@ void SMESH_MeshEditor_i::Scale(SMESH::SMESH_IDSource_ptr  theObject,
                                const SMESH::double_array& theScaleFact,
                                CORBA::Boolean             theCopy)
 {
-  if ( !myPreviewMode ) {
+  if ( !myIsPreviewMode ) {
     TPythonDump() << this << ".Scale( "
                   << theObject            << ", "
                   << thePoint             << ", "
@@ -3938,7 +4319,7 @@ SMESH_MeshEditor_i::ScaleMakeGroups(SMESH::SMESH_IDSource_ptr  theObject,
   TPythonDump aPythonDump; // it is here to prevent dump of GetGroups()
 
   SMESH::ListOfGroups * aGroups = scale(theObject, thePoint, theScaleFact, true, true);
-  if (!myPreviewMode) {
+  if (!myIsPreviewMode) {
     DumpGroupsList(aPythonDump, aGroups);
     aPythonDump << this << ".Scale("
                 << theObject            << ","
@@ -3975,7 +4356,7 @@ SMESH_MeshEditor_i::ScaleMakeMesh(SMESH::SMESH_IDSource_ptr  theObject,
       scale(theObject, thePoint, theScaleFact,false, theCopyGroups, & mesh_i->GetImpl());
       mesh_i->CreateGroupServants();
     }
-    if ( !myPreviewMode )
+    if ( !myIsPreviewMode )
       pydump << mesh << " = " << this << ".ScaleMakeMesh( "
              << theObject            << ", "
              << thePoint             << ", "
@@ -3985,7 +4366,7 @@ SMESH_MeshEditor_i::ScaleMakeMesh(SMESH::SMESH_IDSource_ptr  theObject,
   }
 
   // dump "GetGroups"
-  if (!myPreviewMode && mesh_i)
+  if (!myIsPreviewMode && mesh_i)
     mesh_i->GetGroups();
 
   return mesh._retn();
@@ -4003,9 +4384,8 @@ void SMESH_MeshEditor_i::FindCoincidentNodes (CORBA::Double                  Tol
   initData();
 
   ::SMESH_MeshEditor::TListOfListOfNodes aListOfListOfNodes;
-  ::SMESH_MeshEditor anEditor( myMesh );
   TIDSortedNodeSet nodes; // no input nodes
-  anEditor.FindCoincidentNodes( nodes, Tolerance, aListOfListOfNodes );
+  getEditor().FindCoincidentNodes( nodes, Tolerance, aListOfListOfNodes );
 
   GroupsOfNodes = new SMESH::array_of_long_array;
   GroupsOfNodes->length( aListOfListOfNodes.size() );
@@ -4033,12 +4413,11 @@ void SMESH_MeshEditor_i::FindCoincidentNodesOnPart(SMESH::SMESH_IDSource_ptr
   initData();
 
   TIDSortedNodeSet nodes;
-  idSourceToNodeSet( theObject, GetMeshDS(), nodes );
+  idSourceToNodeSet( theObject, getMeshDS(), nodes );
 
   ::SMESH_MeshEditor::TListOfListOfNodes aListOfListOfNodes;
-  ::SMESH_MeshEditor anEditor( myMesh );
   if(!nodes.empty())
-    anEditor.FindCoincidentNodes( nodes, Tolerance, aListOfListOfNodes );
+    getEditor().FindCoincidentNodes( nodes, Tolerance, aListOfListOfNodes );
 
   GroupsOfNodes = new SMESH::array_of_long_array;
   GroupsOfNodes->length( aListOfListOfNodes.size() );
@@ -4073,20 +4452,19 @@ FindCoincidentNodesOnPartBut(SMESH::SMESH_IDSource_ptr      theObject,
   initData();
 
   TIDSortedNodeSet nodes;
-  idSourceToNodeSet( theObject, GetMeshDS(), nodes );
+  idSourceToNodeSet( theObject, getMeshDS(), nodes );
 
   for ( int i = 0; i < theExceptSubMeshOrGroups.length(); ++i )
   {
     TIDSortedNodeSet exceptNodes;
-    idSourceToNodeSet( theExceptSubMeshOrGroups[i], GetMeshDS(), exceptNodes );
+    idSourceToNodeSet( theExceptSubMeshOrGroups[i], getMeshDS(), exceptNodes );
     TIDSortedNodeSet::iterator avoidNode = exceptNodes.begin();
     for ( ; avoidNode != exceptNodes.end(); ++avoidNode)
       nodes.erase( *avoidNode );
   }
   ::SMESH_MeshEditor::TListOfListOfNodes aListOfListOfNodes;
-  ::SMESH_MeshEditor anEditor( myMesh );
   if(!nodes.empty())
-    anEditor.FindCoincidentNodes( nodes, theTolerance, aListOfListOfNodes );
+    getEditor().FindCoincidentNodes( nodes, theTolerance, aListOfListOfNodes );
 
   theGroupsOfNodes = new SMESH::array_of_long_array;
   theGroupsOfNodes->length( aListOfListOfNodes.size() );
@@ -4115,7 +4493,7 @@ void SMESH_MeshEditor_i::MergeNodes (const SMESH::array_of_long_array& GroupsOfN
 {
   initData();
 
-  SMESHDS_Mesh* aMesh = GetMeshDS();
+  SMESHDS_Mesh* aMesh = getMeshDS();
 
   TPythonDump aTPythonDump;
   aTPythonDump << this << ".MergeNodes([";
@@ -4138,8 +4516,7 @@ void SMESH_MeshEditor_i::MergeNodes (const SMESH::array_of_long_array& GroupsOfN
     if ( i > 0 ) aTPythonDump << ", ";
     aTPythonDump << aNodeGroup;
   }
-  ::SMESH_MeshEditor anEditor( myMesh );
-  anEditor.MergeNodes( aListOfListOfNodes );
+  getEditor().MergeNodes( aListOfListOfNodes );
 
   aTPythonDump <<  "])";
   myMesh->GetMeshDS()->Modified();
@@ -4158,35 +4535,25 @@ void SMESH_MeshEditor_i::FindEqualElements(SMESH::SMESH_IDSource_ptr      theObj
   SMESH::SMESH_GroupBase_var group = SMESH::SMESH_GroupBase::_narrow(theObject);
   if ( !(!group->_is_nil() && group->GetType() == SMESH::NODE) )
   {
-    typedef list<int> TListOfIDs;
-    set<const SMDS_MeshElement*> elems;
-    SMESH::long_array_var aElementsId = theObject->GetIDs();
-    SMESHDS_Mesh* aMesh = GetMeshDS();
-
-    for(int i = 0; i < aElementsId->length(); i++) {
-      CORBA::Long anID = aElementsId[i];
-      const SMDS_MeshElement * elem = aMesh->FindElement(anID);
-      if (elem) {
-        elems.insert(elem);
-      }
-    }
+    TIDSortedElemSet elems;
+    idSourceToSet( theObject, getMeshDS(), elems, SMDSAbs_All, /*emptyIfIsMesh=*/true);
 
     ::SMESH_MeshEditor::TListOfListOfElementsID aListOfListOfElementsID;
-    ::SMESH_MeshEditor anEditor( myMesh );
-    anEditor.FindEqualElements( elems, aListOfListOfElementsID );
+    getEditor().FindEqualElements( elems, aListOfListOfElementsID );
 
     GroupsOfElementsID = new SMESH::array_of_long_array;
     GroupsOfElementsID->length( aListOfListOfElementsID.size() );
 
-    ::SMESH_MeshEditor::TListOfListOfElementsID::iterator arraysIt = aListOfListOfElementsID.begin();
-    for (CORBA::Long j = 0; arraysIt != aListOfListOfElementsID.end(); ++arraysIt, ++j) {
+    ::SMESH_MeshEditor::TListOfListOfElementsID::iterator arraysIt =
+        aListOfListOfElementsID.begin();
+    for (CORBA::Long j = 0; arraysIt != aListOfListOfElementsID.end(); ++arraysIt, ++j)
+    {
       SMESH::long_array& aGroup = (*GroupsOfElementsID)[ j ];
-      TListOfIDs& listOfIDs = *arraysIt;
+      list<int>&      listOfIDs = *arraysIt;
       aGroup.length( listOfIDs.size() );
-      TListOfIDs::iterator idIt = listOfIDs.begin();
-      for (int k = 0; idIt != listOfIDs.end(); ++idIt, ++k ) {
+      list<int>::iterator idIt = listOfIDs.begin();
+      for (int k = 0; idIt != listOfIDs.end(); ++idIt, ++k )
         aGroup[ k ] = *idIt;
-      }
     }
 
     TPythonDump() << "equal_elements = " << this << ".FindEqualElements( "
@@ -4222,8 +4589,7 @@ void SMESH_MeshEditor_i::MergeElements(const SMESH::array_of_long_array& GroupsO
     aTPythonDump << anElemsIDGroup;
   }
 
-  ::SMESH_MeshEditor anEditor( myMesh );
-  anEditor.MergeElements(aListOfListOfElementsID);
+  getEditor().MergeElements(aListOfListOfElementsID);
   myMesh->GetMeshDS()->Modified();
   myMesh->SetIsModified( true );
 
@@ -4239,8 +4605,7 @@ void SMESH_MeshEditor_i::MergeEqualElements()
 {
   initData();
 
-  ::SMESH_MeshEditor anEditor( myMesh );
-  anEditor.MergeEqualElements();
+  getEditor().MergeEqualElements();
 
   myMesh->GetMeshDS()->Modified();
 
@@ -4260,17 +4625,17 @@ CORBA::Boolean SMESH_MeshEditor_i::MoveNode(CORBA::Long   NodeID,
 {
   initData(/*deleteSearchers=*/false);
 
-  const SMDS_MeshNode * node = GetMeshDS()->FindNode( NodeID );
+  const SMDS_MeshNode * node = getMeshDS()->FindNode( NodeID );
   if ( !node )
     return false;
 
   if ( theNodeSearcher )
     theSearchersDeleter.Set( myMesh ); // remove theNodeSearcher if mesh is other
 
-  if ( myPreviewMode ) // make preview data
+  if ( myIsPreviewMode ) // make preview data
   {
     // in a preview mesh, make edges linked to a node
-    TPreviewMesh tmpMesh;
+    TPreviewMesh& tmpMesh = *getPreviewMesh();
     TIDSortedElemSet linkedNodes;
     ::SMESH_MeshEditor::GetLinkedNodes( node, linkedNodes );
     TIDSortedElemSet::iterator nIt = linkedNodes.begin();
@@ -4284,15 +4649,13 @@ CORBA::Boolean SMESH_MeshEditor_i::MoveNode(CORBA::Long   NodeID,
     if ( nodeCpy1 )
       tmpMesh.GetMeshDS()->MoveNode(nodeCpy1, x, y, z);
     // fill preview data
-    ::SMESH_MeshEditor anEditor( & tmpMesh );
-    storeResult( anEditor );
   }
   else if ( theNodeSearcher ) // move node and update theNodeSearcher data accordingly
     theNodeSearcher->MoveNode(node, gp_Pnt( x,y,z ));
   else
-    GetMeshDS()->MoveNode(node, x, y, z);
+    getMeshDS()->MoveNode(node, x, y, z);
 
-  if ( !myPreviewMode )
+  if ( !myIsPreviewMode )
   {
     // Update Python script
     TPythonDump() << "isDone = " << this << ".MoveNode( "
@@ -4317,8 +4680,7 @@ CORBA::Long SMESH_MeshEditor_i::FindNodeClosestTo(CORBA::Double x,
   theSearchersDeleter.Set( myMesh ); // remove theNodeSearcher if mesh is other
 
   if ( !theNodeSearcher ) {
-    ::SMESH_MeshEditor anEditor( myMesh );
-    theNodeSearcher = anEditor.GetNodeSearcher();
+    theNodeSearcher = myEditor.GetNodeSearcher();
   }
   gp_Pnt p( x,y,z );
   if ( const SMDS_MeshNode* node = theNodeSearcher->FindClosestTo( p ))
@@ -4348,22 +4710,21 @@ CORBA::Long SMESH_MeshEditor_i::MoveClosestNodeToPoint(CORBA::Double x,
   theSearchersDeleter.Set( myMesh ); // remove theNodeSearcher if mesh is other
 
   int nodeID = theNodeID;
-  const SMDS_MeshNode* node = GetMeshDS()->FindNode( nodeID );
+  const SMDS_MeshNode* node = getMeshDS()->FindNode( nodeID );
   if ( !node ) // preview moving node
   {
     if ( !theNodeSearcher ) {
-      ::SMESH_MeshEditor anEditor( myMesh );
-      theNodeSearcher = anEditor.GetNodeSearcher();
+      theNodeSearcher = myEditor.GetNodeSearcher();
     }
     gp_Pnt p( x,y,z );
     node = theNodeSearcher->FindClosestTo( p );
   }
   if ( node ) {
     nodeID = node->GetID();
-    if ( myPreviewMode ) // make preview data
+    if ( myIsPreviewMode ) // make preview data
     {
       // in a preview mesh, make edges linked to a node
-      TPreviewMesh tmpMesh;
+      TPreviewMesh tmpMesh = *getPreviewMesh();
       TIDSortedElemSet linkedNodes;
       ::SMESH_MeshEditor::GetLinkedNodes( node, linkedNodes );
       TIDSortedElemSet::iterator nIt = linkedNodes.begin();
@@ -4377,8 +4738,6 @@ CORBA::Long SMESH_MeshEditor_i::MoveClosestNodeToPoint(CORBA::Double x,
       if ( node )
         tmpMesh.GetMeshDS()->MoveNode(node, x, y, z);
       // fill preview data
-      ::SMESH_MeshEditor anEditor( & tmpMesh );
-      storeResult( anEditor );
     }
     else if ( theNodeSearcher ) // move node and update theNodeSearcher data accordingly
     {
@@ -4386,11 +4745,11 @@ CORBA::Long SMESH_MeshEditor_i::MoveClosestNodeToPoint(CORBA::Double x,
     }
     else
     {
-      GetMeshDS()->MoveNode(node, x, y, z);
+      getMeshDS()->MoveNode(node, x, y, z);
     }
   }
 
-  if ( !myPreviewMode )
+  if ( !myIsPreviewMode )
   {
     TPythonDump() << "nodeID = " << this
                   << ".MoveClosestNodeToPoint( "<< x << ", " << y << ", " << z
@@ -4421,8 +4780,7 @@ SMESH::long_array* SMESH_MeshEditor_i::FindElementsByPoint(CORBA::Double      x,
 
   theSearchersDeleter.Set( myMesh );
   if ( !theElementSearcher ) {
-    ::SMESH_MeshEditor anEditor( myMesh );
-    theElementSearcher = anEditor.GetElementSearcher();
+    theElementSearcher = myEditor.GetElementSearcher();
   }
   theElementSearcher->FindElementsByPoint( gp_Pnt( x,y,z ),
                                            SMDSAbs_ElementType( type ),
@@ -4431,7 +4789,7 @@ SMESH::long_array* SMESH_MeshEditor_i::FindElementsByPoint(CORBA::Double      x,
   for ( int i = 0; i < foundElems.size(); ++i )
     res[i] = foundElems[i]->GetID();
 
-  if ( !myPreviewMode ) // call from tui
+  if ( !myIsPreviewMode ) // call from tui
     TPythonDump() << "res = " << this << ".FindElementsByPoint( "
                   << x << ", "
                   << y << ", "
@@ -4459,22 +4817,16 @@ SMESH_MeshEditor_i::FindAmongElementsByPoint(SMESH::SMESH_IDSource_ptr elementID
   
   SMESH::array_of_ElementType_var types = elementIDs->GetTypes();
   if ( types->length() == 1 && // a part contains only nodes or 0D elements
-       ( types[0] == SMESH::NODE || types[0] == SMESH::ELEM0D ) &&
+       ( types[0] == SMESH::NODE || types[0] == SMESH::ELEM0D || types[0] == SMESH::BALL) &&
        type != types[0] ) // but search of elements of dim > 0
     return res._retn();
 
   if ( SMESH::DownCast<SMESH_Mesh_i*>( elementIDs )) // elementIDs is the whole mesh 
     return FindElementsByPoint( x,y,z, type );
 
-  string partIOR = SMESH_Gen_i::GetORB()->object_to_string( elementIDs );
-  if ( SMESH_Group_i* group_i = SMESH::DownCast<SMESH_Group_i*>( elementIDs ))
-    // take into account passible group modification
-    partIOR += SMESH_Comment( ((SMESHDS_Group*)group_i->GetGroupDS())->SMDSGroup().Tic() );
-  partIOR += SMESH_Comment( type );
-
   TIDSortedElemSet elements; // elems should live until FindElementsByPoint() finishes
 
-  theSearchersDeleter.Set( myMesh, partIOR );
+  theSearchersDeleter.Set( myMesh, getPartIOR( elementIDs, type ));
   if ( !theElementSearcher )
   {
     // create a searcher from elementIDs
@@ -4488,8 +4840,7 @@ SMESH_MeshEditor_i::FindAmongElementsByPoint(SMESH::SMESH_IDSource_ptr elementID
     typedef SMDS_SetIterator<const SMDS_MeshElement*, TIDSortedElemSet::const_iterator > TIter;
     SMDS_ElemIteratorPtr elemsIt( new TIter( elements.begin(), elements.end() ));
 
-    ::SMESH_MeshEditor anEditor( myMesh );
-    theElementSearcher = anEditor.GetElementSearcher(elemsIt);
+    theElementSearcher = myEditor.GetElementSearcher(elemsIt);
   }
 
   vector< const SMDS_MeshElement* > foundElems;
@@ -4501,7 +4852,7 @@ SMESH_MeshEditor_i::FindAmongElementsByPoint(SMESH::SMESH_IDSource_ptr elementID
   for ( int i = 0; i < foundElems.size(); ++i )
     res[i] = foundElems[i]->GetID();
 
-  if ( !myPreviewMode ) // call from tui
+  if ( !myIsPreviewMode ) // call from tui
     TPythonDump() << "res = " << this << ".FindAmongElementsByPoint( "
                   << elementIDs << ", "
                   << x << ", "
@@ -4524,8 +4875,7 @@ CORBA::Short SMESH_MeshEditor_i::GetPointState(CORBA::Double x,
 {
   theSearchersDeleter.Set( myMesh );
   if ( !theElementSearcher ) {
-    ::SMESH_MeshEditor anEditor( myMesh );
-    theElementSearcher = anEditor.GetElementSearcher();
+    theElementSearcher = myEditor.GetElementSearcher();
   }
   return CORBA::Short( theElementSearcher->GetPointState( gp_Pnt( x,y,z )));
 }
@@ -4571,7 +4921,7 @@ SMESH_MeshEditor_i::SewFreeBorders(CORBA::Long FirstNodeID1,
 {
   initData();
 
-  SMESHDS_Mesh* aMesh = GetMeshDS();
+  SMESHDS_Mesh* aMesh = getMeshDS();
 
   const SMDS_MeshNode* aBorderFirstNode  = aMesh->FindNode( FirstNodeID1  );
   const SMDS_MeshNode* aBorderSecondNode = aMesh->FindNode( SecondNodeID1 );
@@ -4599,9 +4949,8 @@ SMESH_MeshEditor_i::SewFreeBorders(CORBA::Long FirstNodeID1,
                 << CreatePolygons<< ", "
                 << CreatePolyedrs<< " )";
 
-  ::SMESH_MeshEditor anEditor( myMesh );
   SMESH::SMESH_MeshEditor::Sew_Error error =
-    convError( anEditor.SewFreeBorder (aBorderFirstNode,
+    convError( getEditor().SewFreeBorder (aBorderFirstNode,
                                        aBorderSecondNode,
                                        aBorderLastNode,
                                        aSide2FirstNode,
@@ -4611,7 +4960,6 @@ SMESH_MeshEditor_i::SewFreeBorders(CORBA::Long FirstNodeID1,
                                        CreatePolygons,
                                        CreatePolyedrs) );
 
-  storeResult(anEditor);
 
   myMesh->GetMeshDS()->Modified();
   myMesh->SetIsModified( true );
@@ -4634,7 +4982,7 @@ SMESH_MeshEditor_i::SewConformFreeBorders(CORBA::Long FirstNodeID1,
 {
   initData();
 
-  SMESHDS_Mesh* aMesh = GetMeshDS();
+  SMESHDS_Mesh* aMesh = getMeshDS();
 
   const SMDS_MeshNode* aBorderFirstNode  = aMesh->FindNode( FirstNodeID1  );
   const SMDS_MeshNode* aBorderSecondNode = aMesh->FindNode( SecondNodeID1 );
@@ -4658,9 +5006,8 @@ SMESH_MeshEditor_i::SewConformFreeBorders(CORBA::Long FirstNodeID1,
                 << FirstNodeID2  << ", "
                 << SecondNodeID2 << " )";
 
-  ::SMESH_MeshEditor anEditor( myMesh );
   SMESH::SMESH_MeshEditor::Sew_Error error =
-    convError( anEditor.SewFreeBorder (aBorderFirstNode,
+    convError( getEditor().SewFreeBorder (aBorderFirstNode,
                                        aBorderSecondNode,
                                        aBorderLastNode,
                                        aSide2FirstNode,
@@ -4669,7 +5016,6 @@ SMESH_MeshEditor_i::SewConformFreeBorders(CORBA::Long FirstNodeID1,
                                        true,
                                        false, false) );
 
-  storeResult(anEditor);
 
   myMesh->GetMeshDS()->Modified();
   myMesh->SetIsModified( true );
@@ -4694,7 +5040,7 @@ SMESH_MeshEditor_i::SewBorderToSide(CORBA::Long FirstNodeIDOnFreeBorder,
 {
   initData();
 
-  SMESHDS_Mesh* aMesh = GetMeshDS();
+  SMESHDS_Mesh* aMesh = getMeshDS();
 
   const SMDS_MeshNode* aBorderFirstNode  = aMesh->FindNode( FirstNodeIDOnFreeBorder  );
   const SMDS_MeshNode* aBorderSecondNode = aMesh->FindNode( SecondNodeIDOnFreeBorder );
@@ -4720,9 +5066,8 @@ SMESH_MeshEditor_i::SewBorderToSide(CORBA::Long FirstNodeIDOnFreeBorder,
                 << CreatePolygons           << ", "
                 << CreatePolyedrs           << ") ";
 
-  ::SMESH_MeshEditor anEditor( myMesh );
   SMESH::SMESH_MeshEditor::Sew_Error error =
-    convError( anEditor.SewFreeBorder (aBorderFirstNode,
+    convError( getEditor().SewFreeBorder (aBorderFirstNode,
                                        aBorderSecondNode,
                                        aBorderLastNode,
                                        aSide2FirstNode,
@@ -4732,7 +5077,6 @@ SMESH_MeshEditor_i::SewBorderToSide(CORBA::Long FirstNodeIDOnFreeBorder,
                                        CreatePolygons,
                                        CreatePolyedrs) );
 
-  storeResult(anEditor);
 
   myMesh->GetMeshDS()->Modified();
   myMesh->SetIsModified( true );
@@ -4756,7 +5100,7 @@ SMESH_MeshEditor_i::SewSideElements(const SMESH::long_array& IDsOfSide1Elements,
 {
   initData();
 
-  SMESHDS_Mesh* aMesh = GetMeshDS();
+  SMESHDS_Mesh* aMesh = getMeshDS();
 
   const SMDS_MeshNode* aFirstNode1ToMerge  = aMesh->FindNode( NodeID1OfSide1ToMerge );
   const SMDS_MeshNode* aFirstNode2ToMerge  = aMesh->FindNode( NodeID1OfSide2ToMerge );
@@ -4782,15 +5126,13 @@ SMESH_MeshEditor_i::SewSideElements(const SMESH::long_array& IDsOfSide1Elements,
                 << NodeID2OfSide1ToMerge << ", "
                 << NodeID2OfSide2ToMerge << ")";
 
-  ::SMESH_MeshEditor anEditor( myMesh );
   SMESH::SMESH_MeshEditor::Sew_Error error =
-    convError( anEditor.SewSideElements (aSide1Elems, aSide2Elems,
+    convError( getEditor().SewSideElements (aSide1Elems, aSide2Elems,
                                          aFirstNode1ToMerge,
                                          aFirstNode2ToMerge,
                                          aSecondNode1ToMerge,
                                          aSecondNode2ToMerge));
 
-  storeResult(anEditor);
 
   myMesh->GetMeshDS()->Modified();
   myMesh->SetIsModified( true );
@@ -4812,7 +5154,7 @@ CORBA::Boolean SMESH_MeshEditor_i::ChangeElemNodes(CORBA::Long ide,
 {
   initData();
 
-  const SMDS_MeshElement* elem = GetMeshDS()->FindElement(ide);
+  const SMDS_MeshElement* elem = getMeshDS()->FindElement(ide);
   if(!elem) return false;
 
   int nbn = newIDs.length();
@@ -4820,7 +5162,7 @@ CORBA::Boolean SMESH_MeshEditor_i::ChangeElemNodes(CORBA::Long ide,
   vector<const SMDS_MeshNode*> aNodes(nbn);
   int nbn1=-1;
   for(; i<nbn; i++) {
-    const SMDS_MeshNode* aNode = GetMeshDS()->FindNode(newIDs[i]);
+    const SMDS_MeshNode* aNode = getMeshDS()->FindNode(newIDs[i]);
     if(aNode) {
       nbn1++;
       aNodes[nbn1] = aNode;
@@ -4830,7 +5172,7 @@ CORBA::Boolean SMESH_MeshEditor_i::ChangeElemNodes(CORBA::Long ide,
                 << ide << ", " << newIDs << " )";
 
   MESSAGE("ChangeElementNodes");
-  bool res = GetMeshDS()->ChangeElementNodes( elem, & aNodes[0], nbn1+1 );
+  bool res = getMeshDS()->ChangeElementNodes( elem, & aNodes[0], nbn1+1 );
 
   myMesh->GetMeshDS()->Modified();
   if ( res )
@@ -4839,145 +5181,6 @@ CORBA::Boolean SMESH_MeshEditor_i::ChangeElemNodes(CORBA::Long ide,
   return res;
 }
 
-//================================================================================
-/*!
- * \brief Update myLastCreated* or myPreviewData
- * \param anEditor - it contains last modification results
- */
-//================================================================================
-
-void SMESH_MeshEditor_i::storeResult(::SMESH_MeshEditor& anEditor)
-{
-  if ( myPreviewMode ) { // --- MeshPreviewStruct filling ---
-
-    list<int> aNodesConnectivity;
-    typedef map<int, int> TNodesMap;
-    TNodesMap nodesMap;
-
-    TPreviewMesh * aPreviewMesh = dynamic_cast< TPreviewMesh* >( anEditor.GetMesh() );
-    SMDSAbs_ElementType previewType = aPreviewMesh->myPreviewType;
-
-    SMESHDS_Mesh* aMeshDS = anEditor.GetMeshDS();
-    int nbEdges = aMeshDS->NbEdges();
-    int nbFaces = aMeshDS->NbFaces();
-    int nbVolum = aMeshDS->NbVolumes();
-    switch ( previewType ) {
-    case SMDSAbs_Edge  : nbFaces = nbVolum = 0; break;
-    case SMDSAbs_Face  : nbEdges = nbVolum = 0; break;
-    case SMDSAbs_Volume: nbEdges = nbFaces = 0; break;
-    default:;
-    }
-    myPreviewData->nodesXYZ.length(aMeshDS->NbNodes());
-    myPreviewData->elementTypes.length(nbEdges + nbFaces + nbVolum);
-    int i = 0, j = 0;
-    SMDS_ElemIteratorPtr itMeshElems = aMeshDS->elementsIterator();
-
-    while ( itMeshElems->more() ) {
-      const SMDS_MeshElement* aMeshElem = itMeshElems->next();
-      if ( previewType != SMDSAbs_All && aMeshElem->GetType() != previewType )
-        continue;
-
-      SMDS_ElemIteratorPtr itElemNodes = aMeshElem->nodesIterator();
-      while ( itElemNodes->more() ) {
-        const SMDS_MeshNode* aMeshNode =
-          static_cast<const SMDS_MeshNode*>( itElemNodes->next() );
-        int aNodeID = aMeshNode->GetID();
-        TNodesMap::iterator anIter = nodesMap.find(aNodeID);
-        if ( anIter == nodesMap.end() ) {
-          // filling the nodes coordinates
-          myPreviewData->nodesXYZ[j].x = aMeshNode->X();
-          myPreviewData->nodesXYZ[j].y = aMeshNode->Y();
-          myPreviewData->nodesXYZ[j].z = aMeshNode->Z();
-          anIter = nodesMap.insert( make_pair(aNodeID, j) ).first;
-          j++;
-        }
-        aNodesConnectivity.push_back(anIter->second);
-      }
-
-      // filling the elements types
-      SMDSAbs_ElementType aType;
-      bool isPoly;
-      /*if (aMeshElem->GetType() == SMDSAbs_Volume) {
-        aType = SMDSAbs_Node;
-        isPoly = false;
-        }
-        else*/ {
-        aType = aMeshElem->GetType();
-        isPoly = aMeshElem->IsPoly();
-      }
-
-      myPreviewData->elementTypes[i].SMDS_ElementType = (SMESH::ElementType) aType;
-      myPreviewData->elementTypes[i].isPoly = isPoly;
-      myPreviewData->elementTypes[i].nbNodesInElement = aMeshElem->NbNodes();
-      i++;
-
-    }
-    myPreviewData->nodesXYZ.length( j );
-
-    // filling the elements connectivities
-    list<int>::iterator aConnIter = aNodesConnectivity.begin();
-    myPreviewData->elementConnectivities.length(aNodesConnectivity.size());
-    for( int i = 0; aConnIter != aNodesConnectivity.end(); aConnIter++, i++ )
-      myPreviewData->elementConnectivities[i] = *aConnIter;
-
-    return;
-  }
-
-  {
-    // append new nodes into myLastCreatedNodes
-    const SMESH_SequenceOfElemPtr& aSeq = anEditor.GetLastCreatedNodes();
-    int j = myLastCreatedNodes->length();
-    int newLen = j + aSeq.Length();
-    myLastCreatedNodes->length( newLen );
-    for(int i=0; j<newLen; i++,j++)
-      myLastCreatedNodes[j] = aSeq.Value(i+1)->GetID();
-  }
-  {
-    // append new elements into myLastCreatedElems
-    const SMESH_SequenceOfElemPtr& aSeq = anEditor.GetLastCreatedElems();
-    int j = myLastCreatedElems->length();
-    int newLen = j + aSeq.Length();
-    myLastCreatedElems->length( newLen );
-    for(int i=0; j<newLen; i++,j++)
-      myLastCreatedElems[j] = aSeq.Value(i+1)->GetID();
-  }
-}
-
-//================================================================================
-/*!
- * Return data of mesh edition preview
- */
-//================================================================================
-
-SMESH::MeshPreviewStruct* SMESH_MeshEditor_i::GetPreviewData()
-{
-  return myPreviewData._retn();
-}
-
-//================================================================================
-/*!
- * \brief Returns list of it's IDs of created nodes
- * \retval SMESH::long_array* - list of node ID
- */
-//================================================================================
-
-SMESH::long_array* SMESH_MeshEditor_i::GetLastCreatedNodes()
-{
-  return myLastCreatedNodes._retn();
-}
-
-//================================================================================
-/*!
- * \brief Returns list of it's IDs of created elements
- * \retval SMESH::long_array* - list of elements' ID
- */
-//================================================================================
-
-SMESH::long_array* SMESH_MeshEditor_i::GetLastCreatedElems()
-{
-  return myLastCreatedElems._retn();
-}
-
 //=======================================================================
 //function : ConvertToQuadratic
 //purpose  :
@@ -4985,8 +5188,7 @@ SMESH::long_array* SMESH_MeshEditor_i::GetLastCreatedElems()
 
 void SMESH_MeshEditor_i::ConvertToQuadratic(CORBA::Boolean theForce3d)
 {
-  ::SMESH_MeshEditor anEditor( myMesh );
-  anEditor.ConvertToQuadratic(theForce3d);
+  getEditor().ConvertToQuadratic(theForce3d);
   TPythonDump() << this << ".ConvertToQuadratic( " << theForce3d << " )";
   myMesh->GetMeshDS()->Modified();
   myMesh->SetIsModified( true );
@@ -4999,8 +5201,7 @@ void SMESH_MeshEditor_i::ConvertToQuadratic(CORBA::Boolean theForce3d)
 
 CORBA::Boolean SMESH_MeshEditor_i::ConvertFromQuadratic()
 {
-  ::SMESH_MeshEditor anEditor( myMesh );
-  CORBA::Boolean isDone = anEditor.ConvertFromQuadratic();
+  CORBA::Boolean isDone = getEditor().ConvertFromQuadratic();
   TPythonDump() << this << ".ConvertFromQuadratic()";
   myMesh->GetMeshDS()->Modified();
   if ( isDone )
@@ -5020,7 +5221,7 @@ void SMESH_MeshEditor_i::ConvertToQuadraticObject(CORBA::Boolean            theF
   Unexpect aCatch(SALOME_SalomeException);
   TPythonDump pyDump;
   TIDSortedElemSet elems;
-  if ( idSourceToSet( theObject, GetMeshDS(), elems, SMDSAbs_All, /*emptyIfIsMesh=*/true ))
+  if ( idSourceToSet( theObject, getMeshDS(), elems, SMDSAbs_All, /*emptyIfIsMesh=*/true ))
   {
     if ( elems.empty() )
     {
@@ -5032,8 +5233,7 @@ void SMESH_MeshEditor_i::ConvertToQuadraticObject(CORBA::Boolean            theF
     }
     else
     {
-      ::SMESH_MeshEditor anEditor( myMesh );
-      anEditor.ConvertToQuadratic(theForce3d, elems);
+      getEditor().ConvertToQuadratic(theForce3d, elems);
     }
   }
   myMesh->GetMeshDS()->Modified();
@@ -5054,7 +5254,7 @@ void SMESH_MeshEditor_i::ConvertFromQuadraticObject(SMESH::SMESH_IDSource_ptr th
   Unexpect aCatch(SALOME_SalomeException);
   TPythonDump pyDump;
   TIDSortedElemSet elems;
-  if ( idSourceToSet( theObject, GetMeshDS(), elems, SMDSAbs_All, /*emptyIfIsMesh=*/true ))
+  if ( idSourceToSet( theObject, getMeshDS(), elems, SMDSAbs_All, /*emptyIfIsMesh=*/true ))
   {
     if ( elems.empty() )
     {
@@ -5066,8 +5266,7 @@ void SMESH_MeshEditor_i::ConvertFromQuadraticObject(SMESH::SMESH_IDSource_ptr th
     }
     else
     {
-      ::SMESH_MeshEditor anEditor( myMesh );
-      anEditor.ConvertFromQuadratic(elems);
+      getEditor().ConvertFromQuadratic(elems);
     }
   }
   myMesh->GetMeshDS()->Modified();
@@ -5083,10 +5282,10 @@ void SMESH_MeshEditor_i::ConvertFromQuadraticObject(SMESH::SMESH_IDSource_ptr th
 
 SMESH::SMESH_Mesh_ptr SMESH_MeshEditor_i::makeMesh(const char* theMeshName)
 {
-  SMESH_Gen_i* gen = SMESH_Gen_i::GetSMESHGen();
-  SMESH::SMESH_Mesh_var mesh = gen->CreateEmptyMesh();
-  SALOMEDS::Study_var study = gen->GetCurrentStudy();
-  SALOMEDS::SObject_var meshSO = gen->ObjectToSObject( study, mesh );
+  SMESH_Gen_i*              gen = SMESH_Gen_i::GetSMESHGen();
+  SMESH::SMESH_Mesh_var    mesh = gen->CreateEmptyMesh();
+  SALOMEDS::Study_var     study = gen->GetCurrentStudy();
+  SALOMEDS::SObject_wrap meshSO = gen->ObjectToSObject( study, mesh );
   gen->SetName( meshSO, theMeshName, "Mesh" );
   gen->SetPixMap( meshSO, "ICON_SMESH_TREE_MESH_IMPORTED");
 
@@ -5124,24 +5323,16 @@ string SMESH_MeshEditor_i::generateGroupName(const string& thePrefix)
     if (CORBA::is_nil(aGroup))
       continue;
 
-    groupNames.insert(aGroup->GetName());
+    CORBA::String_var name = aGroup->GetName();
+    groupNames.insert( name.in() );
   }
 
   // Find new name
   string name = thePrefix;
   int index = 0;
 
-  while (!groupNames.insert(name).second) {
-    if (index == 0) {
-      name += "_1";
-    }
-    else {
-      TCollection_AsciiString nbStr(index+1);
-      name.resize( name.rfind('_')+1 );
-      name += nbStr.ToCString();
-    }
-    ++index;
-  }
+  while (!groupNames.insert(name).second)
+    name = SMESH_Comment( thePrefix ) << "_" << index;
 
   return name;
 }
@@ -5163,7 +5354,6 @@ CORBA::Boolean SMESH_MeshEditor_i::DoubleNodes( const SMESH::long_array& theNode
 {
   initData();
 
-  ::SMESH_MeshEditor aMeshEditor( myMesh );
   list< int > aListOfNodes;
   int i, n;
   for ( i = 0, n = theNodes.length(); i < n; i++ )
@@ -5173,10 +5363,9 @@ CORBA::Boolean SMESH_MeshEditor_i::DoubleNodes( const SMESH::long_array& theNode
   for ( i = 0, n = theModifiedElems.length(); i < n; i++ )
     aListOfElems.push_back( theModifiedElems[ i ] );
 
-  bool aResult = aMeshEditor.DoubleNodes( aListOfNodes, aListOfElems );
+  bool aResult = getEditor().DoubleNodes( aListOfNodes, aListOfElems );
 
   myMesh->GetMeshDS()->Modified();
-  storeResult( aMeshEditor) ;
   if ( aResult )
     myMesh->SetIsModified( true );
 
@@ -5314,7 +5503,6 @@ CORBA::Boolean SMESH_MeshEditor_i::DoubleNodeGroups(const SMESH::ListOfGroups& t
 {
   initData();
 
-  ::SMESH_MeshEditor aMeshEditor( myMesh );
 
   std::list< int > aNodes;
   int i, n, j, m;
@@ -5341,9 +5529,8 @@ CORBA::Boolean SMESH_MeshEditor_i::DoubleNodeGroups(const SMESH::ListOfGroups& t
     }
   }
 
-  bool aResult = aMeshEditor.DoubleNodes( aNodes, anElems );
+  bool aResult = getEditor().DoubleNodes( aNodes, anElems );
 
-  storeResult( aMeshEditor) ;
 
   myMesh->GetMeshDS()->Modified();
   if ( aResult )
@@ -5416,17 +5603,15 @@ CORBA::Boolean SMESH_MeshEditor_i::DoubleNodeElem( const SMESH::long_array& theE
 {
   initData();
 
-  ::SMESH_MeshEditor aMeshEditor( myMesh );
 
-  SMESHDS_Mesh* aMeshDS = GetMeshDS();
+  SMESHDS_Mesh* aMeshDS = getMeshDS();
   TIDSortedElemSet anElems, aNodes, anAffected;
   arrayToSet(theElems, aMeshDS, anElems, SMDSAbs_All);
   arrayToSet(theNodesNot, aMeshDS, aNodes, SMDSAbs_Node);
   arrayToSet(theAffectedElems, aMeshDS, anAffected, SMDSAbs_All);
 
-  bool aResult = aMeshEditor.DoubleNodes( anElems, aNodes, anAffected );
+  bool aResult = getEditor().DoubleNodes( anElems, aNodes, anAffected );
 
-  storeResult( aMeshEditor) ;
 
   myMesh->GetMeshDS()->Modified();
   if ( aResult )
@@ -5459,17 +5644,15 @@ CORBA::Boolean SMESH_MeshEditor_i::DoubleNodeElemInRegion ( const SMESH::long_ar
 {
   initData();
 
-  ::SMESH_MeshEditor aMeshEditor( myMesh );
 
-  SMESHDS_Mesh* aMeshDS = GetMeshDS();
+  SMESHDS_Mesh* aMeshDS = getMeshDS();
   TIDSortedElemSet anElems, aNodes;
   arrayToSet(theElems, aMeshDS, anElems, SMDSAbs_All);
   arrayToSet(theNodesNot, aMeshDS, aNodes, SMDSAbs_Node);
 
   TopoDS_Shape aShape = SMESH_Gen_i::GetSMESHGen()->GeomObjectToShape( theShape );
-  bool aResult = aMeshEditor.DoubleNodesInRegion( anElems, aNodes, aShape );
+  bool aResult = getEditor().DoubleNodesInRegion( anElems, aNodes, aShape );
 
-  storeResult( aMeshEditor) ;
 
   myMesh->GetMeshDS()->Modified();
   if ( aResult )
@@ -5502,17 +5685,15 @@ CORBA::Boolean SMESH_MeshEditor_i::DoubleNodeElemGroup(SMESH::SMESH_GroupBase_pt
 
   initData();
 
-  ::SMESH_MeshEditor aMeshEditor( myMesh );
 
-  SMESHDS_Mesh* aMeshDS = GetMeshDS();
+  SMESHDS_Mesh* aMeshDS = getMeshDS();
   TIDSortedElemSet anElems, aNodes, anAffected;
   idSourceToSet( theElems, aMeshDS, anElems, SMDSAbs_All );
   idSourceToSet( theNodesNot, aMeshDS, aNodes, SMDSAbs_Node );
   idSourceToSet( theAffectedElems, aMeshDS, anAffected, SMDSAbs_All );
 
-  bool aResult = aMeshEditor.DoubleNodes( anElems, aNodes, anAffected );
+  bool aResult = getEditor().DoubleNodes( anElems, aNodes, anAffected );
 
-  storeResult( aMeshEditor) ;
 
   myMesh->GetMeshDS()->Modified();
   if ( aResult )
@@ -5571,18 +5752,16 @@ SMESH_MeshEditor_i::DoubleNodeElemGroup2New(SMESH::SMESH_GroupBase_ptr theElems,
 
   initData();
 
-  ::SMESH_MeshEditor aMeshEditor( myMesh );
 
-  SMESHDS_Mesh* aMeshDS = GetMeshDS();
+  SMESHDS_Mesh* aMeshDS = getMeshDS();
   TIDSortedElemSet anElems, aNodes, anAffected;
   idSourceToSet( theElems, aMeshDS, anElems, SMDSAbs_All );
   idSourceToSet( theNodesNot, aMeshDS, aNodes, SMDSAbs_Node );
   idSourceToSet( theAffectedElems, aMeshDS, anAffected, SMDSAbs_All );
 
 
-  bool aResult = aMeshEditor.DoubleNodes( anElems, aNodes, anAffected );
+  bool aResult = getEditor().DoubleNodes( anElems, aNodes, anAffected );
 
-  storeResult( aMeshEditor) ;
   myMesh->GetMeshDS()->Modified();
 
   TPythonDump pyDump;
@@ -5594,14 +5773,14 @@ SMESH_MeshEditor_i::DoubleNodeElemGroup2New(SMESH::SMESH_GroupBase_ptr theElems,
     // Create group with newly created elements
     CORBA::String_var elemGroupName = theElems->GetName();
     string aNewName = generateGroupName( string(elemGroupName.in()) + "_double");
-    if ( !aMeshEditor.GetLastCreatedElems().IsEmpty() && theElemGroupNeeded )
+    if ( !getEditor().GetLastCreatedElems().IsEmpty() && theElemGroupNeeded )
     {
       SMESH::long_array_var anIds = GetLastCreatedElems();
       SMESH::ElementType aGroupType = myMesh_i->GetElementType(anIds[0], true);
       aNewElemGroup = myMesh_i->CreateGroup(aGroupType, aNewName.c_str());
       aNewElemGroup->Add(anIds);
     }
-    if ( !aMeshEditor.GetLastCreatedNodes().IsEmpty() && theNodeGroupNeeded )
+    if ( !getEditor().GetLastCreatedNodes().IsEmpty() && theNodeGroupNeeded )
     {
       SMESH::long_array_var anIds = GetLastCreatedNodes();
       aNewNodeGroup = myMesh_i->CreateGroup(SMESH::NODE, aNewName.c_str());
@@ -5651,17 +5830,15 @@ CORBA::Boolean SMESH_MeshEditor_i::DoubleNodeElemGroupInRegion(SMESH::SMESH_Grou
 
   initData();
 
-  ::SMESH_MeshEditor aMeshEditor( myMesh );
 
-  SMESHDS_Mesh* aMeshDS = GetMeshDS();
+  SMESHDS_Mesh* aMeshDS = getMeshDS();
   TIDSortedElemSet anElems, aNodes, anAffected;
   idSourceToSet( theElems, aMeshDS, anElems, SMDSAbs_All );
   idSourceToSet( theNodesNot, aMeshDS, aNodes, SMDSAbs_Node );
 
   TopoDS_Shape aShape = SMESH_Gen_i::GetSMESHGen()->GeomObjectToShape( theShape );
-  bool aResult = aMeshEditor.DoubleNodesInRegion( anElems, aNodes, aShape );
+  bool aResult = getEditor().DoubleNodesInRegion( anElems, aNodes, aShape );
 
-  storeResult( aMeshEditor) ;
 
   myMesh->GetMeshDS()->Modified();
   if ( aResult )
@@ -5709,17 +5886,15 @@ CORBA::Boolean SMESH_MeshEditor_i::DoubleNodeElemGroups(const SMESH::ListOfGroup
 {
   initData();
 
-  ::SMESH_MeshEditor aMeshEditor( myMesh );
 
-  SMESHDS_Mesh* aMeshDS = GetMeshDS();
+  SMESHDS_Mesh* aMeshDS = getMeshDS();
   TIDSortedElemSet anElems, aNodes, anAffected;
   listOfGroupToSet(theElems, aMeshDS, anElems, false );
   listOfGroupToSet(theNodesNot, aMeshDS, aNodes, true );
   listOfGroupToSet(theAffectedElems, aMeshDS, anAffected, false );
 
-  bool aResult = aMeshEditor.DoubleNodes( anElems, aNodes, anAffected );
+  bool aResult = getEditor().DoubleNodes( anElems, aNodes, anAffected );
 
-  storeResult( aMeshEditor) ;
 
   myMesh->GetMeshDS()->Modified();
   if ( aResult )
@@ -5778,17 +5953,15 @@ SMESH_MeshEditor_i::DoubleNodeElemGroups2New(const SMESH::ListOfGroups& theElems
   
   initData();
 
-  ::SMESH_MeshEditor aMeshEditor( myMesh );
 
-  SMESHDS_Mesh* aMeshDS = GetMeshDS();
+  SMESHDS_Mesh* aMeshDS = getMeshDS();
   TIDSortedElemSet anElems, aNodes, anAffected;
   listOfGroupToSet(theElems, aMeshDS, anElems, false );
   listOfGroupToSet(theNodesNot, aMeshDS, aNodes, true );
   listOfGroupToSet(theAffectedElems, aMeshDS, anAffected, false );
 
-  bool aResult = aMeshEditor.DoubleNodes( anElems, aNodes, anAffected );
+  bool aResult = getEditor().DoubleNodes( anElems, aNodes, anAffected );
 
-  storeResult( aMeshEditor) ;
 
   myMesh->GetMeshDS()->Modified();
   TPythonDump pyDump;
@@ -5799,14 +5972,14 @@ SMESH_MeshEditor_i::DoubleNodeElemGroups2New(const SMESH::ListOfGroups& theElems
     // Create group with newly created elements
     CORBA::String_var elemGroupName = theElems[0]->GetName();
     string aNewName = generateGroupName( string(elemGroupName.in()) + "_double");
-    if ( !aMeshEditor.GetLastCreatedElems().IsEmpty() && theElemGroupNeeded )
+    if ( !getEditor().GetLastCreatedElems().IsEmpty() && theElemGroupNeeded )
     {
       SMESH::long_array_var anIds = GetLastCreatedElems();
       SMESH::ElementType aGroupType = myMesh_i->GetElementType(anIds[0], true);
       aNewElemGroup = myMesh_i->CreateGroup(aGroupType, aNewName.c_str());
       aNewElemGroup->Add(anIds);
     }
-    if ( !aMeshEditor.GetLastCreatedNodes().IsEmpty() && theNodeGroupNeeded )
+    if ( !getEditor().GetLastCreatedNodes().IsEmpty() && theNodeGroupNeeded )
     {
       SMESH::long_array_var anIds = GetLastCreatedNodes();
       aNewNodeGroup = myMesh_i->CreateGroup(SMESH::NODE, aNewName.c_str());
@@ -5854,17 +6027,15 @@ SMESH_MeshEditor_i::DoubleNodeElemGroupsInRegion(const SMESH::ListOfGroups& theE
 {
   initData();
 
-  ::SMESH_MeshEditor aMeshEditor( myMesh );
 
-  SMESHDS_Mesh* aMeshDS = GetMeshDS();
+  SMESHDS_Mesh* aMeshDS = getMeshDS();
   TIDSortedElemSet anElems, aNodes;
   listOfGroupToSet(theElems, aMeshDS, anElems,false );
   listOfGroupToSet(theNodesNot, aMeshDS, aNodes, true );
 
   TopoDS_Shape aShape = SMESH_Gen_i::GetSMESHGen()->GeomObjectToShape( theShape );
-  bool aResult = aMeshEditor.DoubleNodesInRegion( anElems, aNodes, aShape );
+  bool aResult = getEditor().DoubleNodesInRegion( anElems, aNodes, aShape );
 
-  storeResult( aMeshEditor) ;
 
   myMesh->GetMeshDS()->Modified();
   if ( aResult )
@@ -5876,6 +6047,123 @@ SMESH_MeshEditor_i::DoubleNodeElemGroupsInRegion(const SMESH::ListOfGroups& theE
   return aResult;
 }
 
+//================================================================================
+/*!
+  \brief Identify the elements that will be affected by node duplication (actual duplication is not performed.
+  This method is the first step of DoubleNodeElemGroupsInRegion.
+  \param theElems - list of groups of elements (edges or faces) to be replicated
+  \param theNodesNot - list of groups of nodes not to replicated
+  \param theShape - shape to detect affected elements (element which geometric center
+         located on or inside shape).
+         The replicated nodes should be associated to affected elements.
+  \return groups of affected elements
+  \sa DoubleNodeElemGroupsInRegion()
+ */
+//================================================================================
+SMESH::ListOfGroups*
+SMESH_MeshEditor_i::AffectedElemGroupsInRegion( const SMESH::ListOfGroups& theElems,
+                                                const SMESH::ListOfGroups& theNodesNot,
+                                                GEOM::GEOM_Object_ptr      theShape )
+{
+  MESSAGE("AffectedElemGroupsInRegion");
+  SMESH::ListOfGroups_var aListOfGroups = new SMESH::ListOfGroups();
+  bool isEdgeGroup = false;
+  bool isFaceGroup = false;
+  bool isVolumeGroup = false;
+  SMESH::SMESH_Group_var aNewEdgeGroup = myMesh_i->CreateGroup(SMESH::EDGE, "affectedEdges");
+  SMESH::SMESH_Group_var aNewFaceGroup = myMesh_i->CreateGroup(SMESH::FACE, "affectedFaces");
+  SMESH::SMESH_Group_var aNewVolumeGroup = myMesh_i->CreateGroup(SMESH::VOLUME, "affectedVolumes");
+
+  initData();
+
+  ::SMESH_MeshEditor aMeshEditor(myMesh);
+
+  SMESHDS_Mesh* aMeshDS = getMeshDS();
+  TIDSortedElemSet anElems, aNodes;
+  listOfGroupToSet(theElems, aMeshDS, anElems, false);
+  listOfGroupToSet(theNodesNot, aMeshDS, aNodes, true);
+
+  TopoDS_Shape aShape = SMESH_Gen_i::GetSMESHGen()->GeomObjectToShape(theShape);
+  TIDSortedElemSet anAffected;
+  bool aResult = aMeshEditor.AffectedElemGroupsInRegion(anElems, aNodes, aShape, anAffected);
+
+
+  myMesh->GetMeshDS()->Modified();
+  TPythonDump pyDump;
+  if (aResult)
+    {
+      myMesh->SetIsModified(true);
+
+      int lg = anAffected.size();
+      MESSAGE("lg="<< lg);
+      SMESH::long_array_var volumeIds = new SMESH::long_array;
+      volumeIds->length(lg);
+      SMESH::long_array_var faceIds = new SMESH::long_array;
+      faceIds->length(lg);
+      SMESH::long_array_var edgeIds = new SMESH::long_array;
+      edgeIds->length(lg);
+      int ivol = 0;
+      int iface = 0;
+      int iedge = 0;
+
+      TIDSortedElemSet::const_iterator eIt = anAffected.begin();
+      for (; eIt != anAffected.end(); ++eIt)
+        {
+          const SMDS_MeshElement* anElem = *eIt;
+          if (!anElem)
+            continue;
+          int elemId = anElem->GetID();
+          if (myMesh->GetElementType(elemId, true) == SMDSAbs_Volume)
+            volumeIds[ivol++] = elemId;
+          else if (myMesh->GetElementType(elemId, true) == SMDSAbs_Face)
+            faceIds[iface++] = elemId;
+          else if (myMesh->GetElementType(elemId, true) == SMDSAbs_Edge)
+            edgeIds[iedge++] = elemId;
+        }
+      volumeIds->length(ivol);
+      faceIds->length(iface);
+      edgeIds->length(iedge);
+
+      aNewVolumeGroup->Add(volumeIds);
+      aNewFaceGroup->Add(faceIds);
+      aNewEdgeGroup->Add(edgeIds);
+      isVolumeGroup = (aNewVolumeGroup->Size() > 0);
+      isFaceGroup = (aNewFaceGroup->Size() > 0);
+      isEdgeGroup = (aNewEdgeGroup->Size() > 0);
+    }
+
+  int nbGroups = 0;
+  if (isEdgeGroup)
+    nbGroups++;
+  if (isFaceGroup)
+    nbGroups++;
+  if (isVolumeGroup)
+    nbGroups++;
+  aListOfGroups->length(nbGroups);
+
+  int i = 0;
+  if (isEdgeGroup)
+    aListOfGroups[i++] = aNewEdgeGroup._retn();
+  if (isFaceGroup)
+    aListOfGroups[i++] = aNewFaceGroup._retn();
+  if (isVolumeGroup)
+    aListOfGroups[i++] = aNewVolumeGroup._retn();
+
+  // Update Python script
+
+  pyDump << "[ ";
+  if (isEdgeGroup)
+    pyDump << aNewEdgeGroup << ", ";
+  if (isFaceGroup)
+    pyDump << aNewFaceGroup << ", ";
+  if (isVolumeGroup)
+    pyDump << aNewVolumeGroup << ", ";
+  pyDump << "] = ";
+  pyDump << this << ".AffectedElemGroupsInRegion( " << &theElems << ", " << &theNodesNot << ", " << theShape << " )";
+
+  return aListOfGroups._retn();
+}
+
 //================================================================================
 /*!
   \brief Generated skin mesh (containing 2D cells) from 3D mesh
@@ -5888,9 +6176,7 @@ CORBA::Boolean SMESH_MeshEditor_i::Make2DMeshFrom3D()
 {
   initData();
 
-  ::SMESH_MeshEditor aMeshEditor( myMesh );
-  bool aResult = aMeshEditor.Make2DMeshFrom3D();
-  storeResult( aMeshEditor) ;
+  bool aResult = getEditor().Make2DMeshFrom3D();
   myMesh->GetMeshDS()->Modified();
   TPythonDump() << "isDone = " << this << ".Make2DMeshFrom3D()";
   return aResult;
@@ -5914,11 +6200,12 @@ CORBA::Boolean SMESH_MeshEditor_i::DoubleNodesOnGroupBoundaries( const SMESH::Li
                                                                  CORBA::Boolean createJointElems )
   throw (SALOME::SALOME_Exception)
 {
-  initData();
+  bool aResult = false;
 
-  ::SMESH_MeshEditor aMeshEditor( myMesh );
+  SMESH_TRY;
+  initData();
 
-  SMESHDS_Mesh* aMeshDS = GetMeshDS();
+  SMESHDS_Mesh* aMeshDS = getMeshDS();
 
   vector<TIDSortedElemSet> domains;
   domains.clear();
@@ -5938,15 +6225,17 @@ CORBA::Boolean SMESH_MeshEditor_i::DoubleNodesOnGroupBoundaries( const SMESH::Li
     }
   }
 
-  bool aResult = aMeshEditor.DoubleNodesOnGroupBoundaries( domains, createJointElems );
+  aResult = getEditor().DoubleNodesOnGroupBoundaries( domains, createJointElems );
   // TODO publish the groups of flat elements in study
 
-  storeResult( aMeshEditor) ;
   myMesh->GetMeshDS()->Modified();
 
   // Update Python script
   TPythonDump() << "isDone = " << this << ".DoubleNodesOnGroupBoundaries( " << &theDomains
       << ", " << createJointElems << " )";
+
+  SMESH_CATCH( SMESH::throwCorbaException );
+
   return aResult;
 }
 
@@ -5966,9 +6255,8 @@ CORBA::Boolean SMESH_MeshEditor_i::CreateFlatElementsOnFacesGroups( const SMESH:
 {
   initData();
 
-  ::SMESH_MeshEditor aMeshEditor( myMesh );
 
-  SMESHDS_Mesh* aMeshDS = GetMeshDS();
+  SMESHDS_Mesh* aMeshDS = getMeshDS();
 
   vector<TIDSortedElemSet> faceGroups;
   faceGroups.clear();
@@ -5986,10 +6274,9 @@ CORBA::Boolean SMESH_MeshEditor_i::CreateFlatElementsOnFacesGroups( const SMESH:
     }
   }
 
-  bool aResult = aMeshEditor.CreateFlatElementsOnFacesGroups( faceGroups );
+  bool aResult = getEditor().CreateFlatElementsOnFacesGroups( faceGroups );
   // TODO publish the groups of flat elements in study
 
-  storeResult( aMeshEditor) ;
   myMesh->GetMeshDS()->Modified();
 
   // Update Python script
@@ -5997,6 +6284,61 @@ CORBA::Boolean SMESH_MeshEditor_i::CreateFlatElementsOnFacesGroups( const SMESH:
   return aResult;
 }
 
+/*!
+ *  \brief identify all the elements around a geom shape, get the faces delimiting the hole
+ *  Build groups of volume to remove, groups of faces to replace on the skin of the object,
+ *  groups of faces to remove inside the object, (idem edges).
+ *  Build ordered list of nodes at the border of each group of faces to replace (to be used to build a geom subshape)
+ */
+void SMESH_MeshEditor_i::CreateHoleSkin(CORBA::Double radius,
+                                        GEOM::GEOM_Object_ptr theShape,
+                                        const char* groupName,
+                                        const SMESH::double_array& theNodesCoords,
+                                        SMESH::array_of_long_array_out GroupsOfNodes)
+  throw (SALOME::SALOME_Exception)
+{
+  SMESH_TRY;
+
+  initData();
+  std::vector<std::vector<int> > aListOfListOfNodes;
+  ::SMESH_MeshEditor aMeshEditor( myMesh );
+
+  theSearchersDeleter.Set( myMesh ); // remove theNodeSearcher if mesh is other
+  if ( !theNodeSearcher )
+    theNodeSearcher = aMeshEditor.GetNodeSearcher();
+
+  vector<double> nodesCoords;
+  for (int i = 0; i < theNodesCoords.length(); i++)
+  {
+    nodesCoords.push_back( theNodesCoords[i] );
+  }
+
+  TopoDS_Shape aShape = SMESH_Gen_i::GetSMESHGen()->GeomObjectToShape( theShape );
+  aMeshEditor.CreateHoleSkin(radius, aShape, theNodeSearcher, groupName,
+                             nodesCoords, aListOfListOfNodes);
+
+  GroupsOfNodes = new SMESH::array_of_long_array;
+  GroupsOfNodes->length( aListOfListOfNodes.size() );
+  std::vector<std::vector<int> >::iterator llIt = aListOfListOfNodes.begin();
+  for ( CORBA::Long i = 0; llIt != aListOfListOfNodes.end(); llIt++, i++ )
+  {
+    vector<int>& aListOfNodes = *llIt;
+    vector<int>::iterator lIt = aListOfNodes.begin();;
+    SMESH::long_array& aGroup = (*GroupsOfNodes)[ i ];
+    aGroup.length( aListOfNodes.size() );
+    for ( int j = 0; lIt != aListOfNodes.end(); lIt++, j++ )
+      aGroup[ j ] = (*lIt);
+  }
+  TPythonDump() << "lists_nodes = " << this << ".CreateHoleSkin( "
+                << radius << ", "
+                << theShape
+                << ", '" << groupName << "', "
+                << theNodesCoords << " )";
+
+  SMESH_CATCH( SMESH::throwCorbaException );
+}
+
+
 // issue 20749 ===================================================================
 /*!
  * \brief Creates missing boundary elements
@@ -6028,7 +6370,7 @@ SMESH_MeshEditor_i::MakeBoundaryMesh(SMESH::SMESH_IDSource_ptr idSource,
   if ( dim > SMESH::BND_1DFROM2D )
     THROW_SALOME_CORBA_EXCEPTION("Invalid boundary dimension", SALOME::BAD_PARAM);
 
-  SMESHDS_Mesh* aMeshDS = GetMeshDS();
+  SMESHDS_Mesh* aMeshDS = getMeshDS();
 
   SMESH::SMESH_Mesh_var mesh_var;
   SMESH::SMESH_Group_var group_var;
@@ -6056,14 +6398,12 @@ SMESH_MeshEditor_i::MakeBoundaryMesh(SMESH::SMESH_IDSource_ptr idSource,
     }
 
     // do it
-    ::SMESH_MeshEditor aMeshEditor( myMesh );
-    aMeshEditor.MakeBoundaryMesh( elements,
+    getEditor().MakeBoundaryMesh( elements,
                                   ::SMESH_MeshEditor::Bnd_Dimension(dim),
                                   smesh_group,
                                   smesh_mesh,
                                   toCopyElements,
                                   toCopyExistingBondary);
-    storeResult( aMeshEditor );
 
     if ( smesh_mesh )
       smesh_mesh->GetMeshDS()->Modified();
@@ -6201,8 +6541,7 @@ CORBA::Long SMESH_MeshEditor_i::MakeBoundaryElements(SMESH::Bnd_Dimension dim,
       {
         SMESH::Bnd_Dimension bdim = 
           ( elemType == SMDSAbs_Volume ) ? SMESH::BND_2DFROM3D : SMESH::BND_1DFROM2D;
-        ::SMESH_MeshEditor aMeshEditor( srcMesh );
-        nbAdded += aMeshEditor.MakeBoundaryMesh( elements,
+        nbAdded += getEditor().MakeBoundaryMesh( elements,
                                                  ::SMESH_MeshEditor::Bnd_Dimension(bdim),
                                                  smesh_group,
                                                  tgtMesh,
@@ -6210,21 +6549,18 @@ CORBA::Long SMESH_MeshEditor_i::MakeBoundaryElements(SMESH::Bnd_Dimension dim,
                                                  /*toCopyExistingBondary=*/srcMesh != tgtMesh,
                                                  /*toAddExistingBondary=*/true,
                                                  /*aroundElements=*/true);
-        storeResult( aMeshEditor );
       }
     }
   }
   else
   {
-    ::SMESH_MeshEditor aMeshEditor( srcMesh );
-    nbAdded += aMeshEditor.MakeBoundaryMesh( elements,
+    nbAdded += getEditor().MakeBoundaryMesh( elements,
                                              ::SMESH_MeshEditor::Bnd_Dimension(dim),
                                              smesh_group,
                                              tgtMesh,
                                              /*toCopyElements=*/false,
                                              /*toCopyExistingBondary=*/srcMesh != tgtMesh,
                                              /*toAddExistingBondary=*/true);
-    storeResult( aMeshEditor );
   }
   tgtMesh->GetMeshDS()->Modified();