Salome HOME
Replace Descret by Discrete in variable and method names.
[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 NbBiQuadQuadrangles()
292     throw (SALOME::SALOME_Exception);
293
294   CORBA::Long NbPolygons()
295     throw (SALOME::SALOME_Exception);
296
297   CORBA::Long NbVolumes()
298     throw (SALOME::SALOME_Exception);
299
300   CORBA::Long NbVolumesOfOrder(SMESH::ElementOrder order)
301     throw (SALOME::SALOME_Exception);
302
303   CORBA::Long NbTetras()
304     throw (SALOME::SALOME_Exception);
305
306   CORBA::Long NbTetrasOfOrder(SMESH::ElementOrder order)
307     throw (SALOME::SALOME_Exception);
308
309   CORBA::Long NbHexas()
310     throw (SALOME::SALOME_Exception);
311
312   CORBA::Long NbHexasOfOrder(SMESH::ElementOrder order)
313     throw (SALOME::SALOME_Exception);
314
315   CORBA::Long NbTriQuadraticHexas()
316     throw (SALOME::SALOME_Exception);
317
318   CORBA::Long NbPyramids()
319     throw (SALOME::SALOME_Exception);
320
321   CORBA::Long NbPyramidsOfOrder(SMESH::ElementOrder order)
322     throw (SALOME::SALOME_Exception);
323
324   CORBA::Long NbPrisms()
325     throw (SALOME::SALOME_Exception);
326
327   CORBA::Long NbPrismsOfOrder(SMESH::ElementOrder order)
328     throw (SALOME::SALOME_Exception);
329
330   CORBA::Long NbHexagonalPrisms()
331     throw (SALOME::SALOME_Exception);
332
333   CORBA::Long NbPolyhedrons()
334     throw (SALOME::SALOME_Exception);
335
336   CORBA::Long NbSubMesh()
337     throw (SALOME::SALOME_Exception);
338
339   SMESH::long_array* GetElementsId()
340     throw (SALOME::SALOME_Exception);
341
342   SMESH::long_array* GetElementsByType( SMESH::ElementType theElemType )
343     throw (SALOME::SALOME_Exception);
344
345   SMESH::long_array* GetNodesId()
346     throw (SALOME::SALOME_Exception);
347
348   SMESH::ElementType GetElementType( CORBA::Long id, bool iselem )
349     throw (SALOME::SALOME_Exception);
350
351   SMESH::EntityType GetElementGeomType( CORBA::Long id )
352     throw (SALOME::SALOME_Exception);
353
354   /*!
355    * Returns ID of elements for given submesh
356    */
357   SMESH::long_array* GetSubMeshElementsId(CORBA::Long ShapeID)
358     throw (SALOME::SALOME_Exception);
359
360   /*!
361    * Returns ID of nodes for given submesh
362    * If param all==true - returns all nodes, else -
363    * returns only nodes on shapes.
364    */
365   SMESH::long_array* GetSubMeshNodesId(CORBA::Long ShapeID, CORBA::Boolean all)
366     throw (SALOME::SALOME_Exception);
367
368   /*!
369    * Returns type of elements for given submesh
370    */
371   SMESH::ElementType GetSubMeshElementType(CORBA::Long ShapeID)
372     throw (SALOME::SALOME_Exception);
373
374   char* Dump();
375
376   // Internal methods not available through CORBA
377   // They are called by corresponding interface methods
378   SMESH_Hypothesis::Hypothesis_Status addHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
379                                                     SMESH::SMESH_Hypothesis_ptr anHyp);
380
381   SMESH_Hypothesis::Hypothesis_Status removeHypothesis(GEOM::GEOM_Object_ptr aSubShapeObject,
382                                                        SMESH::SMESH_Hypothesis_ptr anHyp);
383
384   static SMESH::Hypothesis_Status
385   ConvertHypothesisStatus (SMESH_Hypothesis::Hypothesis_Status theStatus);
386
387   static void PrepareForWriting (const char* file, bool overwrite = true);
388
389   //int importMEDFile( const char* theFileName, const char* theMeshName );
390
391   SMESH::SMESH_subMesh_ptr createSubMesh( GEOM::GEOM_Object_ptr theSubShapeObject );
392
393   void removeSubMesh(SMESH::SMESH_subMesh_ptr theSubMesh,
394                      GEOM::GEOM_Object_ptr theSubShapeObject );
395
396   SMESH::SMESH_GroupBase_ptr createGroup(SMESH::ElementType        theElemType,
397                                          const char*               theName,
398                                          const TopoDS_Shape&       theShape = TopoDS_Shape(),
399                                          const SMESH_PredicatePtr& thePred = SMESH_PredicatePtr());
400
401   void removeGroup( const int theId );
402
403   SMESH::SMESH_subMesh_ptr getSubMesh(int shapeID);
404   // return an existing subMesh object for the shapeID. shapeID == submeshID.
405
406   const std::map<int, SMESH::SMESH_GroupBase_ptr>& getGroups() { return _mapGroups; }
407   // return an existing group object.
408
409   /*!
410    * \brief Update hypotheses assigned to geom groups if the latter change
411    *
412    * NPAL16168: "geometrical group edition from a submesh don't modifiy mesh computation"
413    */
414   void CheckGeomGroupModif();
415
416   CORBA::LongLong GetMeshPtr();
417
418   /*!
419    * \brief Assure that all groups are published
420    */
421   void CreateGroupServants();
422
423   /*!
424    * \brief Return groups cantained in _mapGroups by their IDs
425    */
426   SMESH::ListOfGroups* GetGroups(const std::list<int>& groupIDs) const;
427
428   /*!
429    * Get XYZ coordinates of node as list of double
430    * If there is not node for given ID - returns empty list
431    */
432   SMESH::double_array* GetNodeXYZ(CORBA::Long id);
433
434   /*!
435    * For given node returns list of IDs of inverse elements
436    * If there is not node for given ID - returns empty list
437    */
438   SMESH::long_array* GetNodeInverseElements(CORBA::Long id);
439
440   /*!
441    * \brief Return position of a node on shape
442    */
443   SMESH::NodePosition* GetNodePosition(CORBA::Long NodeID);
444
445   /*!
446    * If given element is node returns IDs of shape from position
447    * If there is not node for given ID - returns -1
448    */
449   CORBA::Long GetShapeID(CORBA::Long id);
450
451   /*!
452    * For given element returns ID of result shape after
453    * ::FindShape() from SMESH_MeshEditor
454    * If there is not element for given ID - returns -1
455    */
456   CORBA::Long GetShapeIDForElem(CORBA::Long id);
457
458   /*!
459    * Returns number of nodes for given element
460    * If there is not element for given ID - returns -1
461    */
462   CORBA::Long GetElemNbNodes(CORBA::Long id);
463
464   /*!
465    * Returns IDs of nodes of given element
466    */
467   SMESH::long_array* GetElemNodes(CORBA::Long id);
468
469   /*!
470    * Returns ID of node by given index for given element
471    * If there is not element for given ID - returns -1
472    * If there is not node for given index - returns -2
473    */
474   CORBA::Long GetElemNode(CORBA::Long id, CORBA::Long index);
475
476   /*!
477    * Returns true if given node is medium node
478    * in given quadratic element
479    */
480   CORBA::Boolean IsMediumNode(CORBA::Long ide, CORBA::Long idn);
481
482   /*!
483    * Returns true if given node is medium node
484    * in one of quadratic elements
485    */
486   CORBA::Boolean IsMediumNodeOfAnyElem(CORBA::Long idn,
487                                        SMESH::ElementType theElemType);
488
489   /*!
490    * Returns number of edges for given element
491    */
492   CORBA::Long ElemNbEdges(CORBA::Long id);
493
494   /*!
495    * Returns number of faces for given element
496    */
497   CORBA::Long ElemNbFaces(CORBA::Long id);
498   /*!
499    * Returns nodes of given face (counted from zero) for given element.
500    */
501   SMESH::long_array* GetElemFaceNodes(CORBA::Long elemId, CORBA::Short faceIndex);
502
503   /*!
504    * Returns an element based on all given nodes.
505    */
506   CORBA::Long FindElementByNodes(const SMESH::long_array& nodes);
507
508   /*!
509    * Returns true if given element is polygon
510    */
511   CORBA::Boolean IsPoly(CORBA::Long id);
512
513   /*!
514    * Returns true if given element is quadratic
515    */
516   CORBA::Boolean IsQuadratic(CORBA::Long id);
517
518   /*!
519    * Returns bary center for given element
520    */
521   SMESH::double_array* BaryCenter(CORBA::Long id);
522
523   /*!
524    * Returns information about imported MED file
525    */
526   virtual SALOME_MED::MedFileInfo* GetMEDFileInfo();
527
528   /*!
529    * Sets list of notebook variables used for Mesh operations separated by ":" symbol
530    */
531   void SetParameters (const char* theParameters);
532
533   /*!
534    * Returns list of notebook variables used for Mesh operations separated by ":" symbol
535    */
536   char* GetParameters();
537
538   /*!
539    * Returns list of notebook variables used for last Mesh operation
540    */
541   SMESH::string_array* GetLastParameters();
542
543   /*!
544    * Collect statistic of mesh elements given by iterator
545    */
546   static void CollectMeshInfo(const SMDS_ElemIteratorPtr theItr,
547                               SMESH::long_array&         theInfo);
548
549   /*!
550    * \brief Return submesh objects list in meshing order
551    */
552   virtual SMESH::submesh_array_array* GetMeshOrder();
553   /*!
554    * \brief Set submesh object order
555    */
556   virtual ::CORBA::Boolean SetMeshOrder(const SMESH::submesh_array_array& theSubMeshArray);
557
558
559   // =========================
560   // SMESH_IDSource interface
561   // =========================
562
563   virtual SMESH::long_array* GetIDs();
564   /*!
565    * Returns statistic of mesh elements
566    * Result array of number enityties
567    * Inherited from SMESH_IDSource
568    */
569   virtual SMESH::long_array* GetMeshInfo();
570   /*!
571    * Returns types of elements it contains
572    */
573   virtual SMESH::array_of_ElementType* GetTypes();
574   /*!
575    * Returns self
576    */
577   virtual SMESH::SMESH_Mesh_ptr GetMesh();
578
579
580   std::map<int, SMESH_subMesh_i*> _mapSubMesh_i; //NRI
581   std::map<int, ::SMESH_subMesh*> _mapSubMesh;   //NRI
582
583 private:
584   std::string PrepareMeshNameAndGroups( const char* file, CORBA::Boolean overwrite );
585
586   /*!
587    * Check and correct names of mesh groups
588    */
589   void checkGroupNames();
590
591   /*!
592    * Convert submesh ids into submesh interfaces
593    */
594   void convertMeshOrder(const TListOfListOfInt&     theIdsOrder,
595                         SMESH::submesh_array_array& theSubMeshOrder,
596                         const bool                  theIsDump);
597
598 private:
599
600   static int myIdGenerator;
601   ::SMESH_Mesh* _impl;  // :: force no namespace here
602   SMESH_Gen_i* _gen_i;
603   int _id;          // id given by creator (unique within the creator instance)
604   int _studyId;
605   std::map<int, SMESH::SMESH_subMesh_ptr>    _mapSubMeshIor;
606   std::map<int, SMESH::SMESH_GroupBase_ptr>  _mapGroups;
607   std::map<int, SMESH::SMESH_Hypothesis_ptr> _mapHypo;
608   SALOME_MED::MedFileInfo_var myFileInfo;
609
610 private:
611
612   // Data used to track changes of GEOM groups
613   struct TGeomGroupData {
614     // keep study entry and not ior because GEOM_Object actually changes if
615     // number of items in a group varies (1) <-> (>1)
616     std::string       _groupEntry;
617     std::set<int>     _indices; // indices of group items within group's main shape
618     CORBA::Object_ptr _smeshObject; // SMESH object depending on GEOM group
619   };
620   std::list<TGeomGroupData> _geomGroupData;
621
622   /*!
623    * Remember GEOM group data
624    */
625   void addGeomGroupData(GEOM::GEOM_Object_ptr theGeomObj,
626                         CORBA::Object_ptr     theSmeshObj);
627   /*!
628    * Remove GEOM group data relating to removed smesh object
629    */
630   void removeGeomGroupData(CORBA::Object_ptr theSmeshObj);
631   /*!
632    * \brief Return new group contents if it has been changed and update group data
633    */
634   TopoDS_Shape newGroupShape( TGeomGroupData & groupData);
635
636 };
637
638 #endif