Salome HOME
Mesh redesine. New fields added to specify whether hypothesis is main or additional...
[modules/smesh.git] / src / DriverMED / DriverMED_Family.h
1 //  SMESH DriverMED : tool to split groups on families
2 //
3 //  Copyright (C) 2003  CEA
4 // 
5 //  This library is free software; you can redistribute it and/or 
6 //  modify it under the terms of the GNU Lesser General Public 
7 //  License as published by the Free Software Foundation; either 
8 //  version 2.1 of the License. 
9 // 
10 //  This library is distributed in the hope that it will be useful, 
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13 //  Lesser General Public License for more details. 
14 // 
15 //  You should have received a copy of the GNU Lesser General Public 
16 //  License along with this library; if not, write to the Free Software 
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
18 // 
19 //  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
20 //
21 //
22 //
23 //  File   : DriverMED_Family.hxx
24 //  Author : Julia DOROVSKIKH
25 //  Module : SMESH
26 //  $Header$
27
28 #ifndef _INCLUDE_DRIVERMED_FAMILY
29 #define _INCLUDE_DRIVERMED_FAMILY
30
31 #include "SMDS_Mesh.hxx"
32 #include "SMESHDS_GroupBase.hxx"
33 #include "SMESHDS_SubMesh.hxx"
34 #include "MED_Common.hxx"
35
36 #include <boost/shared_ptr.hpp>
37 #include <set>
38
39 #define REST_NODES_FAMILY 1
40 #define REST_EDGES_FAMILY -1
41 #define REST_FACES_FAMILY -2
42 #define REST_VOLUMES_FAMILY -3
43 #define FIRST_NODE_FAMILY 2
44 #define FIRST_ELEM_FAMILY -4
45
46 class DriverMED_Family;
47 typedef boost::shared_ptr<DriverMED_Family> DriverMED_FamilyPtr;
48
49 class DriverMED_Family
50 {
51  public:
52
53   // Methods for groups storing to MED
54
55   static std::list<DriverMED_FamilyPtr> MakeFamilies (const std::map <int, SMESHDS_SubMesh*>& theSubMeshes,
56                                                       const std::list<SMESHDS_GroupBase*>& theGroups,
57                                                       const bool doGroupOfNodes,
58                                                       const bool doGroupOfEdges,
59                                                       const bool doGroupOfFaces,
60                                                       const bool doGroupOfVolumes);
61   // Split each group from list <theGroups> and each sub-mesh from list <theSubMeshes>
62   // on some parts (families) on the basis of the elements membership in other groups
63   // from <theGroups> and other sub-meshes from <theSubMeshes>.
64   // Resulting families have no common elements.
65
66   MED::PFamilyInfo GetFamilyInfo (const MED::PWrapper& theWrapper, 
67                                   const MED::PMeshInfo& theMeshInfo) const;
68   // Create TFamilyInfo for this family
69
70   const std::set<const SMDS_MeshElement *>& GetElements () const { return myElements; }
71   // Returns elements of this family
72
73   int GetId () const { return myId; }
74   // Returns a family ID
75
76  public:
77
78   // Methods for groups reading from MED
79
80   void AddElement (const SMDS_MeshElement* theElement) { myElements.insert(theElement); }
81
82   void AddGroupName (std::string theGroupName) { myGroupNames.insert(theGroupName); }
83
84   void SetType (const SMDSAbs_ElementType theType) { myType = theType; }
85   SMDSAbs_ElementType GetType () { return myType; }
86
87   bool MemberOf (std::string theGroupName) const
88     { return (myGroupNames.find(theGroupName) != myGroupNames.end()); }
89
90   const MED::TStringSet& GetGroupNames () const { return myGroupNames; }
91
92  private:
93   void Init (SMESHDS_GroupBase* group);
94   // Initialize the tool by SMESHDS_GroupBase
95
96   static std::list<DriverMED_FamilyPtr> SplitByType (SMESHDS_SubMesh* theSubMesh,
97                                                      const int        theId);
98   // Split <theSubMesh> on some parts (families)
99   // on the basis of the elements type.
100
101   void Split (DriverMED_FamilyPtr by,
102               DriverMED_FamilyPtr common);
103   // Remove from <Elements> elements, common with <by>,
104   // Remove from <by> elements, common with <Elements>,
105   // Create family <common> from common elements, with combined groups list.
106
107   void SetId (const int theId) { myId = theId; }
108   // Sets a family ID
109
110   bool IsEmpty () const { return myElements.empty(); }
111   // Check, if this family has empty list of elements
112
113  private:
114   int                           myId;
115   SMDSAbs_ElementType           myType;
116   std::set<const SMDS_MeshElement *> myElements;
117   MED::TStringSet               myGroupNames;
118 };
119
120 #endif