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