Salome HOME
0022100: EDF 2413 SMESH: Take into account TRIA7
[modules/smesh.git] / src / SMESH_I / SMESH_Mesh_i.hxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : SMESH_Mesh_i.hxx
23 //  Author : Paul RASCLE, EDF
24 //  Module : SMESH
25
26 #ifndef _SMESH_MESH_I_HXX_
27 #define _SMESH_MESH_I_HXX_
28
29 #include "SMESH.hxx"
30
31 #include <SALOMEconfig.h>
32 #include CORBA_SERVER_HEADER(SMESH_Gen)
33 #include CORBA_SERVER_HEADER(SMESH_Mesh)
34 #include CORBA_SERVER_HEADER(SMESH_Group)
35 #include CORBA_SERVER_HEADER(SMESH_Hypothesis)
36 #include CORBA_CLIENT_HEADER(GEOM_Gen)
37 #include CORBA_CLIENT_HEADER(MED)
38
39 #include "SMESH_Hypothesis.hxx"
40 #include "SMESH_Mesh.hxx"
41 #include "SMESH_subMesh.hxx"
42
43 #include "SALOME_GenericObj_i.hh"
44
45 class SMESH_Gen_i;
46 class SMESH_GroupBase_i;
47 class SMESH_subMesh_i;
48 class SMESH_PreMeshInfo;
49
50 #include <map>
51
52 class SMESH_I_EXPORT SMESH_Mesh_i:
53   public virtual POA_SMESH::SMESH_Mesh,
54   public virtual SALOME::GenericObj_i
55 {
56   SMESH_Mesh_i();
57   SMESH_Mesh_i(const SMESH_Mesh_i&);
58 public:
59   SMESH_Mesh_i( PortableServer::POA_ptr thePOA,
60                 SMESH_Gen_i*            myGen_i,
61                 CORBA::Long             studyId );
62
63   virtual ~SMESH_Mesh_i();
64
65   // --- CORBA
66   void SetShape( GEOM::GEOM_Object_ptr theShapeObject )
67     throw (SALOME::SALOME_Exception);
68
69   CORBA::Boolean HasShapeToMesh()
70     throw (SALOME::SALOME_Exception);
71
72   GEOM::GEOM_Object_ptr GetShapeToMesh()
73     throw (SALOME::SALOME_Exception);
74
75   CORBA::Boolean IsLoaded()
76     throw (SALOME::SALOME_Exception);
77
78   void Load()
79     throw (SALOME::SALOME_Exception);
80
81   void Clear()
82     throw (SALOME::SALOME_Exception);
83
84   void ClearSubMesh(CORBA::Long ShapeID)
85     throw (SALOME::SALOME_Exception);
86
87   SMESH::Hypothesis_Status AddHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
88                                          SMESH::SMESH_Hypothesis_ptr anHyp)
89     throw (SALOME::SALOME_Exception);
90
91   SMESH::Hypothesis_Status RemoveHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
92                                             SMESH::SMESH_Hypothesis_ptr anHyp)
93     throw (SALOME::SALOME_Exception);
94
95   SMESH::ListOfHypothesis* GetHypothesisList(GEOM::GEOM_Object_ptr aSubShapeObject)
96     throw (SALOME::SALOME_Exception);
97
98   SMESH::submesh_array* GetSubMeshes()
99     throw (SALOME::SALOME_Exception);
100
101   SMESH::SMESH_subMesh_ptr GetSubMesh(GEOM::GEOM_Object_ptr aSubShapeObject, const char* theName)
102     throw (SALOME::SALOME_Exception);
103
104   void RemoveSubMesh( SMESH::SMESH_subMesh_ptr theSubMesh )
105     throw (SALOME::SALOME_Exception);
106
107   SMESH::SMESH_Group_ptr CreateGroup( SMESH::ElementType theElemType, const char* theName )
108     throw (SALOME::SALOME_Exception);
109
110   SMESH::SMESH_GroupOnGeom_ptr CreateGroupFromGEOM(SMESH::ElementType    theElemType,
111                                                    const char*           theName,
112                                                    GEOM::GEOM_Object_ptr theGeomObj )
113     throw (SALOME::SALOME_Exception);
114
115   SMESH::SMESH_GroupOnFilter_ptr CreateGroupFromFilter(SMESH::ElementType theElemType,
116                                                        const char*        theName,
117                                                        SMESH::Filter_ptr  theFilter )
118     throw (SALOME::SALOME_Exception);
119
120   void RemoveGroup( SMESH::SMESH_GroupBase_ptr theGroup )
121     throw (SALOME::SALOME_Exception);
122
123   void RemoveGroupWithContents( SMESH::SMESH_GroupBase_ptr theGroup )
124     throw (SALOME::SALOME_Exception);
125
126   SMESH::ListOfGroups* GetGroups()
127     throw (SALOME::SALOME_Exception);
128
129   CORBA::Long NbGroups()
130     throw (SALOME::SALOME_Exception);
131
132   SMESH::SMESH_Group_ptr UnionGroups( SMESH::SMESH_GroupBase_ptr theGroup1,
133                                       SMESH::SMESH_GroupBase_ptr theGroup2,
134                                       const char* theName )
135     throw (SALOME::SALOME_Exception);
136
137   SMESH::SMESH_Group_ptr UnionListOfGroups( const SMESH::ListOfGroups& theGroups,
138                                             const char* theName)
139     throw (SALOME::SALOME_Exception);
140
141   SMESH::SMESH_Group_ptr IntersectGroups( SMESH::SMESH_GroupBase_ptr theGroup1,
142                                           SMESH::SMESH_GroupBase_ptr theGroup2,
143                                           const char* theName )
144     throw (SALOME::SALOME_Exception);
145
146   SMESH::SMESH_Group_ptr IntersectListOfGroups( const SMESH::ListOfGroups&  theGroups,
147                                                 const char* theName )
148     throw (SALOME::SALOME_Exception);
149
150   SMESH::SMESH_Group_ptr CutGroups( SMESH::SMESH_GroupBase_ptr theGroup1,
151                                     SMESH::SMESH_GroupBase_ptr theGroup2,
152                                     const char* theName )
153     throw (SALOME::SALOME_Exception);
154
155   SMESH::SMESH_Group_ptr CutListOfGroups( const SMESH::ListOfGroups& theMainGroups,
156                                           const SMESH::ListOfGroups& theToolGroups,
157                                           const char* theName )
158     throw (SALOME::SALOME_Exception);
159
160   SMESH::SMESH_Group_ptr CreateDimGroup( const SMESH::ListOfGroups& theGroups,
161                                          SMESH::ElementType theElemType,
162                                          const char* theName )
163     throw (SALOME::SALOME_Exception);
164
165
166   SMESH::SMESH_Group_ptr ConvertToStandalone( SMESH::SMESH_GroupBase_ptr theGroupOn )
167     throw (SALOME::SALOME_Exception);
168
169   SMESH::log_array* GetLog(CORBA::Boolean clearAfterGet)
170     throw (SALOME::SALOME_Exception);
171
172   SMESH::SMESH_MeshEditor_ptr GetMeshEditor() throw (SALOME::SALOME_Exception);
173
174   SMESH::SMESH_MeshEditor_ptr GetMeshEditPreviewer() throw (SALOME::SALOME_Exception);
175
176   CORBA::Boolean HasModificationsToDiscard() throw (SALOME::SALOME_Exception);
177
178   void ClearLog() throw (SALOME::SALOME_Exception);
179
180   CORBA::Long GetId() throw (SALOME::SALOME_Exception);
181
182   CORBA::Long GetStudyId() throw (SALOME::SALOME_Exception);
183
184   // --- C++ interface
185   void SetImpl(::SMESH_Mesh* impl);
186   ::SMESH_Mesh& GetImpl();         // :: force no namespace here
187
188   SMESH_Gen_i* GetGen() { return _gen_i; }
189
190   int ImportUNVFile( const char* theFileName )
191     throw (SALOME::SALOME_Exception);
192
193   int ImportSTLFile( const char* theFileName )
194     throw (SALOME::SALOME_Exception);
195
196   SMESH::ComputeError* ImportGMFFile( const char* theFileName,
197                                       bool        theMakeRequiredGroups)
198     throw (SALOME::SALOME_Exception);
199
200   /*!
201    * consult DriverMED_R_SMESHDS_Mesh::ReadStatus for returned value
202    */
203   SMESH::DriverMED_ReadStatus ImportMEDFile( const char* theFileName, const char* theMeshName )
204     throw (SALOME::SALOME_Exception);
205
206   SMESH::DriverMED_ReadStatus ImportCGNSFile( const char*  theFileName,
207                                               const int    theMeshIndex,
208                                               std::string& theMeshName)
209     throw (SALOME::SALOME_Exception);
210
211   /*!
212    *  Auto color
213    */
214   void SetAutoColor(CORBA::Boolean theAutoColor)
215     throw (SALOME::SALOME_Exception);
216
217   CORBA::Boolean GetAutoColor()
218     throw (SALOME::SALOME_Exception);
219
220   /*! Check group names for duplications.
221    *  Consider maximum group name length stored in MED file.
222    */
223   CORBA::Boolean HasDuplicatedGroupNamesMED();
224   /*!
225    * Return string representation of a MED file version comprising nbDigits
226    */
227   char* GetVersionString(SMESH::MED_VERSION version, CORBA::Short nbDigits);
228
229   void ExportToMEDX( const char*        file,
230                      CORBA::Boolean     auto_groups,
231                      SMESH::MED_VERSION version,
232                      CORBA::Boolean     overwrite ) throw (SALOME::SALOME_Exception);
233   void ExportToMED ( const char*        file,
234                      CORBA::Boolean     auto_groups,
235                      SMESH::MED_VERSION version ) throw (SALOME::SALOME_Exception);
236   void ExportMED   ( const char*        file,
237                      CORBA::Boolean     auto_groups ) throw (SALOME::SALOME_Exception);
238
239   void ExportSAUV( const char* file, CORBA::Boolean auto_groups ) throw (SALOME::SALOME_Exception);
240
241   void ExportDAT( const char* file ) throw (SALOME::SALOME_Exception);
242   void ExportUNV( const char* file ) throw (SALOME::SALOME_Exception);
243   void ExportSTL( const char* file, bool isascii ) throw (SALOME::SALOME_Exception);
244   void ExportCGNS(SMESH::SMESH_IDSource_ptr meshPart,
245                   const char*               file,
246                   CORBA::Boolean            overwrite) throw (SALOME::SALOME_Exception);
247   void ExportGMF(SMESH::SMESH_IDSource_ptr meshPart,
248                  const char*               file,
249                  CORBA::Boolean            withRequiredGroups) throw (SALOME::SALOME_Exception);
250
251   void ExportPartToMED(SMESH::SMESH_IDSource_ptr meshPart,
252                        const char*               file,
253                        CORBA::Boolean            auto_groups,
254                        SMESH::MED_VERSION        version,
255                        CORBA::Boolean            overwrite) throw (SALOME::SALOME_Exception);
256   void ExportPartToDAT(SMESH::SMESH_IDSource_ptr meshPart,
257                        const char*               file) throw (SALOME::SALOME_Exception);
258   void ExportPartToUNV(SMESH::SMESH_IDSource_ptr meshPart,
259                        const char*               file) throw (SALOME::SALOME_Exception);
260   void ExportPartToSTL(SMESH::SMESH_IDSource_ptr meshPart,
261                        const char*               file,
262                        CORBA::Boolean            isascii) throw (SALOME::SALOME_Exception);
263
264   SALOME_MED::MESH_ptr GetMEDMesh()
265     throw (SALOME::SALOME_Exception);
266
267   CORBA::Long NbNodes()
268     throw (SALOME::SALOME_Exception);
269
270   CORBA::Long NbElements()
271     throw (SALOME::SALOME_Exception);
272
273   CORBA::Long Nb0DElements()
274     throw (SALOME::SALOME_Exception);
275
276   CORBA::Long NbBalls()
277     throw (SALOME::SALOME_Exception);
278
279   CORBA::Long NbEdges()
280     throw (SALOME::SALOME_Exception);
281
282   CORBA::Long NbEdgesOfOrder(SMESH::ElementOrder order)
283     throw (SALOME::SALOME_Exception);
284
285   CORBA::Long NbFaces()
286     throw (SALOME::SALOME_Exception);
287
288   CORBA::Long NbFacesOfOrder(SMESH::ElementOrder order)
289     throw (SALOME::SALOME_Exception);
290
291   CORBA::Long NbTriangles()
292     throw (SALOME::SALOME_Exception);
293
294   CORBA::Long NbTrianglesOfOrder(SMESH::ElementOrder order)
295     throw (SALOME::SALOME_Exception);
296
297   CORBA::Long NbBiQuadTriangles()
298     throw (SALOME::SALOME_Exception);
299
300   CORBA::Long NbQuadrangles()
301     throw (SALOME::SALOME_Exception);
302
303   CORBA::Long NbQuadranglesOfOrder(SMESH::ElementOrder order)
304     throw (SALOME::SALOME_Exception);
305
306   CORBA::Long NbBiQuadQuadrangles()
307     throw (SALOME::SALOME_Exception);
308
309   CORBA::Long NbPolygons()
310     throw (SALOME::SALOME_Exception);
311
312   CORBA::Long NbVolumes()
313     throw (SALOME::SALOME_Exception);
314
315   CORBA::Long NbVolumesOfOrder(SMESH::ElementOrder order)
316     throw (SALOME::SALOME_Exception);
317
318   CORBA::Long NbTetras()
319     throw (SALOME::SALOME_Exception);
320
321   CORBA::Long NbTetrasOfOrder(SMESH::ElementOrder order)
322     throw (SALOME::SALOME_Exception);
323
324   CORBA::Long NbHexas()
325     throw (SALOME::SALOME_Exception);
326
327   CORBA::Long NbHexasOfOrder(SMESH::ElementOrder order)
328     throw (SALOME::SALOME_Exception);
329
330   CORBA::Long NbTriQuadraticHexas()
331     throw (SALOME::SALOME_Exception);
332
333   CORBA::Long NbPyramids()
334     throw (SALOME::SALOME_Exception);
335
336   CORBA::Long NbPyramidsOfOrder(SMESH::ElementOrder order)
337     throw (SALOME::SALOME_Exception);
338
339   CORBA::Long NbPrisms()
340     throw (SALOME::SALOME_Exception);
341
342   CORBA::Long NbPrismsOfOrder(SMESH::ElementOrder order)
343     throw (SALOME::SALOME_Exception);
344
345   CORBA::Long NbHexagonalPrisms()
346     throw (SALOME::SALOME_Exception);
347
348   CORBA::Long NbPolyhedrons()
349     throw (SALOME::SALOME_Exception);
350
351   CORBA::Long NbSubMesh()
352     throw (SALOME::SALOME_Exception);
353
354   SMESH::long_array* GetElementsId()
355     throw (SALOME::SALOME_Exception);
356
357   SMESH::long_array* GetElementsByType( SMESH::ElementType theElemType )
358     throw (SALOME::SALOME_Exception);
359
360   SMESH::long_array* GetNodesId()
361     throw (SALOME::SALOME_Exception);
362
363   SMESH::ElementType GetElementType( CORBA::Long id, bool iselem )
364     throw (SALOME::SALOME_Exception);
365
366   SMESH::EntityType GetElementGeomType( CORBA::Long id )
367     throw (SALOME::SALOME_Exception);
368
369   /*!
370    * Returns ID of elements for given submesh
371    */
372   SMESH::long_array* GetSubMeshElementsId(CORBA::Long ShapeID)
373     throw (SALOME::SALOME_Exception);
374
375   /*!
376    * Returns ID of nodes for given submesh
377    * If param all==true - returns all nodes, else -
378    * returns only nodes on shapes.
379    */
380   SMESH::long_array* GetSubMeshNodesId(CORBA::Long ShapeID, CORBA::Boolean all)
381     throw (SALOME::SALOME_Exception);
382
383   /*!
384    * Returns type of elements for given submesh
385    */
386   SMESH::ElementType GetSubMeshElementType(CORBA::Long ShapeID)
387     throw (SALOME::SALOME_Exception);
388
389   char* Dump();
390
391   // Internal methods not available through CORBA
392   // They are called by corresponding interface methods
393   SMESH_Hypothesis::Hypothesis_Status addHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
394                                                     SMESH::SMESH_Hypothesis_ptr anHyp);
395
396   SMESH_Hypothesis::Hypothesis_Status removeHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
397                                                        SMESH::SMESH_Hypothesis_ptr anHyp);
398
399   static SMESH::Hypothesis_Status
400   ConvertHypothesisStatus (SMESH_Hypothesis::Hypothesis_Status theStatus);
401
402   static void PrepareForWriting (const char* file, bool overwrite = true);
403
404   //int importMEDFile( const char* theFileName, const char* theMeshName );
405
406   SMESH::SMESH_subMesh_ptr createSubMesh( GEOM::GEOM_Object_ptr theSubShapeObject );
407
408   bool removeSubMesh(SMESH::SMESH_subMesh_ptr theSubMesh,
409                      GEOM::GEOM_Object_ptr theSubShapeObject );
410
411   SMESH::SMESH_GroupBase_ptr createGroup(SMESH::ElementType        theElemType,
412                                          const char*               theName,
413                                          const TopoDS_Shape&       theShape = TopoDS_Shape(),
414                                          const SMESH_PredicatePtr& thePred = SMESH_PredicatePtr());
415
416   void removeGroup( const int theId );
417
418   SMESH::SMESH_subMesh_ptr getSubMesh(int shapeID);
419   // return an existing subMesh object for the shapeID. shapeID == submeshID.
420
421   const std::map<int, SMESH::SMESH_GroupBase_ptr>& getGroups() { return _mapGroups; }
422   // return an existing group object.
423
424   void onHypothesisModified();
425   // callback from _impl to forget not loaded mesh data (issue 0021208)
426
427   void checkMeshLoaded();
428
429   /*!
430    * \brief Update hypotheses assigned to geom groups if the latter change
431    *
432    * NPAL16168: "geometrical group edition from a submesh don't modifiy mesh computation"
433    */
434   void CheckGeomGroupModif();
435
436   CORBA::LongLong GetMeshPtr();
437
438   /*!
439    * \brief Assure that all groups are published
440    */
441   void CreateGroupServants();
442
443   /*!
444    * \brief Return groups cantained in _mapGroups by their IDs
445    */
446   SMESH::ListOfGroups* GetGroups(const std::list<int>& groupIDs) const;
447
448   /*!
449    * Get XYZ coordinates of node as list of double
450    * If there is not node for given ID - returns empty list
451    */
452   SMESH::double_array* GetNodeXYZ(CORBA::Long id);
453
454   /*!
455    * For given node returns list of IDs of inverse elements
456    * If there is not node for given ID - returns empty list
457    */
458   SMESH::long_array* GetNodeInverseElements(CORBA::Long id);
459
460   /*!
461    * \brief Return position of a node on shape
462    */
463   SMESH::NodePosition* GetNodePosition(CORBA::Long NodeID);
464
465   /*!
466    * \brief Return position of an element on shape
467    */
468   SMESH::ElementPosition GetElementPosition(CORBA::Long ElemID);
469
470   /*!
471    * If given element is node returns IDs of shape from position
472    * If there is not node for given ID - returns -1
473    */
474   CORBA::Long GetShapeID(CORBA::Long id);
475
476   /*!
477    * For given element returns ID of result shape after
478    * ::FindShape() from SMESH_MeshEditor
479    * If there is not element for given ID - returns -1
480    */
481   CORBA::Long GetShapeIDForElem(CORBA::Long id);
482
483   /*!
484    * Returns number of nodes for given element
485    * If there is not element for given ID - returns -1
486    */
487   CORBA::Long GetElemNbNodes(CORBA::Long id);
488
489   /*!
490    * Returns IDs of nodes of given element
491    */
492   SMESH::long_array* GetElemNodes(CORBA::Long id);
493
494   /*!
495    * Returns ID of node by given index for given element
496    * If there is not element for given ID - returns -1
497    * If there is not node for given index - returns -2
498    */
499   CORBA::Long GetElemNode(CORBA::Long id, CORBA::Long index);
500
501   /*!
502    * Returns true if given node is medium node
503    * in given quadratic element
504    */
505   CORBA::Boolean IsMediumNode(CORBA::Long ide, CORBA::Long idn);
506
507   /*!
508    * Returns true if given node is medium node
509    * in one of quadratic elements
510    */
511   CORBA::Boolean IsMediumNodeOfAnyElem(CORBA::Long idn,
512                                        SMESH::ElementType theElemType);
513
514   /*!
515    * Returns number of edges for given element
516    */
517   CORBA::Long ElemNbEdges(CORBA::Long id);
518
519   /*!
520    * Returns number of faces for given element
521    */
522   CORBA::Long ElemNbFaces(CORBA::Long id);
523   /*!
524    * Returns nodes of given face (counted from zero) for given element.
525    */
526   SMESH::long_array* GetElemFaceNodes(CORBA::Long elemId, CORBA::Short faceIndex);
527
528   /*!
529    * Returns an element based on all given nodes.
530    */
531   CORBA::Long FindElementByNodes(const SMESH::long_array& nodes);
532
533   /*!
534    * Returns true if given element is polygon
535    */
536   CORBA::Boolean IsPoly(CORBA::Long id);
537
538   /*!
539    * Returns true if given element is quadratic
540    */
541   CORBA::Boolean IsQuadratic(CORBA::Long id);
542
543   /*!
544    * Returns diameter of ball discrete element or zero in case of an invalid \a id
545    */
546   CORBA::Double GetBallDiameter(CORBA::Long id);
547
548   /*!
549    * Returns bary center for given element
550    */
551   SMESH::double_array* BaryCenter(CORBA::Long id);
552
553   /*!
554    * Returns information about imported MED file
555    */
556   virtual SALOME_MED::MedFileInfo* GetMEDFileInfo();
557
558   /*!
559    * Sets list of notebook variables used for Mesh operations separated by ":" symbol
560    */
561   void SetParameters (const char* theParameters);
562
563   /*!
564    * Returns list of notebook variables used for Mesh operations separated by ":" symbol
565    */
566   char* GetParameters();
567
568   /*!
569    * Returns list of notebook variables used for last Mesh operation
570    */
571   SMESH::string_array* GetLastParameters();
572
573   /*!
574    * Collect statistic of mesh elements given by iterator
575    */
576   static void CollectMeshInfo(const SMDS_ElemIteratorPtr theItr,
577                               SMESH::long_array&         theInfo);
578
579   /*!
580    * \brief Return submesh objects list in meshing order
581    */
582   virtual SMESH::submesh_array_array* GetMeshOrder();
583   /*!
584    * \brief Set submesh object order
585    */
586   virtual ::CORBA::Boolean SetMeshOrder(const SMESH::submesh_array_array& theSubMeshArray);
587
588
589   // =========================
590   // SMESH_IDSource interface
591   // =========================
592
593   virtual SMESH::long_array* GetIDs();
594   /*!
595    * Returns statistic of mesh elements
596    * Result array of number enityties
597    * Inherited from SMESH_IDSource
598    */
599   virtual SMESH::long_array* GetMeshInfo();
600   /*!
601    * Returns types of elements it contains
602    */
603   virtual SMESH::array_of_ElementType* GetTypes();
604   /*!
605    * Returns self
606    */
607   virtual SMESH::SMESH_Mesh_ptr GetMesh();
608   /*!
609    * Returns false if GetMeshInfo() returns incorrect information that may
610    * happen if mesh data is not yet fully loaded from the file of study.
611    */
612   bool IsMeshInfoCorrect();
613
614   std::map<int, SMESH_subMesh_i*> _mapSubMesh_i; //NRI
615   std::map<int, ::SMESH_subMesh*> _mapSubMesh;   //NRI
616
617 private:
618   std::string prepareMeshNameAndGroups( const char* file, CORBA::Boolean overwrite );
619
620   /*!
621    * Check and correct names of mesh groups
622    */
623   void checkGroupNames();
624
625   /*!
626    * Convert submesh ids into submesh interfaces
627    */
628   void convertMeshOrder(const TListOfListOfInt&     theIdsOrder,
629                         SMESH::submesh_array_array& theSubMeshOrder,
630                         const bool                  theIsDump);
631
632 private:
633
634   static int    _idGenerator;
635   ::SMESH_Mesh* _impl;        // :: force no namespace here
636   SMESH_Gen_i*  _gen_i;
637   int           _id;          // id given by creator (unique within the creator instance)
638   int           _studyId;
639   std::map<int, SMESH::SMESH_subMesh_ptr>    _mapSubMeshIor;
640   std::map<int, SMESH::SMESH_GroupBase_ptr>  _mapGroups;
641   std::map<int, SMESH::SMESH_Hypothesis_ptr> _mapHypo;
642   SALOME_MED::MedFileInfo_var _medFileInfo;
643   SMESH_PreMeshInfo*          _preMeshInfo; // mesh info before full loading from study file
644
645   SMESH_PreMeshInfo* & changePreMeshInfo() { return _preMeshInfo; }
646   friend class SMESH_PreMeshInfo;
647
648 private:
649
650   // Data used to track changes of GEOM groups
651   struct TGeomGroupData {
652     // keep study entry but not ior because GEOM_Object actually changes if
653     // number of items in a group varies (1) <-> (>1)
654     std::string       _groupEntry;
655     std::set<int>     _indices; // indices of group items within group's main shape
656     CORBA::Object_ptr _smeshObject; // SMESH object depending on GEOM group
657   };
658   std::list<TGeomGroupData> _geomGroupData;
659
660   /*!
661    * Remember GEOM group data
662    */
663   void addGeomGroupData(GEOM::GEOM_Object_ptr theGeomObj,
664                         CORBA::Object_ptr     theSmeshObj);
665   /*!
666    * Remove GEOM group data relating to removed smesh object
667    */
668   void removeGeomGroupData(CORBA::Object_ptr theSmeshObj);
669   /*!
670    * \brief Return new group contents if it has been changed and update group data
671    */
672   TopoDS_Shape newGroupShape( TGeomGroupData & groupData);
673
674 };
675
676 #endif