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