Salome HOME
SALOME PAL V1_4_1
[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_Group.hxx"
33 #include "SMESHDS_SubMesh.hxx"
34 #include "MEDA_Wrapper.hxx"
35
36 #include <boost/shared_ptr.hpp>
37 #include <set>
38
39 using namespace std;
40
41 #define REST_NODES_FAMILY 1
42 #define REST_EDGES_FAMILY -1
43 #define REST_FACES_FAMILY -2
44 #define REST_VOLUMES_FAMILY -3
45 #define FIRST_NODE_FAMILY 2
46 #define FIRST_ELEM_FAMILY -4
47
48 class DriverMED_Family;
49 typedef boost::shared_ptr<DriverMED_Family> DriverMED_FamilyPtr;
50
51 class DriverMED_Family
52 {
53  public:
54
55   // Methods for groups storing to MED
56
57   static list<DriverMED_FamilyPtr> MakeFamilies (const map <int, SMESHDS_SubMesh*>& theSubMeshes,
58                                                  const list<SMESHDS_Group*>& theGroups,
59                                                  const bool doGroupOfNodes,
60                                                  const bool doGroupOfEdges,
61                                                  const bool doGroupOfFaces,
62                                                  const bool doGroupOfVolumes);
63   // Split each group from list <theGroups> and each sub-mesh from list <theSubMeshes>
64   // on some parts (families) on the basis of the elements membership in other groups
65   // from <theGroups> and other sub-meshes from <theSubMeshes>.
66   // Resulting families have no common elements.
67
68   MEDA::PFamilyInfo GetFamilyInfo (const MEDA::PMeshInfo& theMeshInfo) const;
69   // Create TFamilyInfo for this family
70
71   const set<const SMDS_MeshElement *>& GetElements () const { return myElements; }
72   // Returns elements of this family
73
74   int GetId () const { return myId; }
75   // Returns a family ID
76
77  public:
78
79   // Methods for groups reading from MED
80
81   void AddElement (const SMDS_MeshElement* theElement) { myElements.insert(theElement); }
82
83   void AddGroupName (string theGroupName) { myGroupNames.insert(theGroupName); }
84
85   void SetType (const SMDSAbs_ElementType theType) { myType = theType; }
86   SMDSAbs_ElementType GetType () { return myType; }
87
88   bool MemberOf (string theGroupName) const
89     { return (myGroupNames.find(theGroupName) != myGroupNames.end()); }
90
91   const MED::TStringSet& GetGroupNames () const { return myGroupNames; }
92
93  private:
94   void Init (SMESHDS_Group* group);
95   // Initialize the tool by SMESHDS_Group
96
97   static list<DriverMED_FamilyPtr> SplitByType (SMESHDS_SubMesh* theSubMesh,
98                                                 const int        theId);
99   // Split <theSubMesh> on some parts (families)
100   // on the basis of the elements type.
101
102   void Split (DriverMED_FamilyPtr by,
103               DriverMED_FamilyPtr common);
104   // Remove from <Elements> elements, common with <by>,
105   // Remove from <by> elements, common with <Elements>,
106   // Create family <common> from common elements, with combined groups list.
107
108   void SetId (const int theId) { myId = theId; }
109   // Sets a family ID
110
111   bool IsEmpty () const { return myElements.empty(); }
112   // Check, if this family has empty list of elements
113
114  private:
115   int                           myId;
116   SMDSAbs_ElementType           myType;
117   set<const SMDS_MeshElement *> myElements;
118   MED::TStringSet               myGroupNames;
119 };
120
121 #endif