Salome HOME
Merge from PHASE_25_BR 09/12/2010
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_NETGEN_2D_ONLY.hxx
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  This library is free software; you can redistribute it and/or
4 //  modify it under the terms of the GNU Lesser General Public
5 //  License as published by the Free Software Foundation; either
6 //  version 2.1 of the License.
7 //
8 //  This library is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 //  Lesser General Public License for more details.
12 //
13 //  You should have received a copy of the GNU Lesser General Public
14 //  License along with this library; if not, write to the Free Software
15 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // File      : NETGENPlugin_NETGEN_2D_ONLY.hxx
21 // Project   : SALOME
22 // Author    : Edward AGAPOV (OCC)
23 //
24 #ifndef _NETGENPlugin_NETGEN_2D_ONLY_HXX_
25 #define _NETGENPlugin_NETGEN_2D_ONLY_HXX_
26
27 #include "SMESH_2D_Algo.hxx"
28 #include "SMESH_Mesh.hxx"
29
30 class StdMeshers_MaxElementArea;
31 class StdMeshers_LengthFromEdges;
32 class StdMeshers_QuadranglePreference;
33 class NETGENPlugin_Hypothesis_2D;
34
35 /*!
36  * \brief Mesher generating 2D elements on a geometrical face taking
37  * into account pre-existing nodes on face boundaries
38  *
39  * Historically, NETGENPlugin_NETGEN_2D is actually 1D-2D, that is why
40  * the class is named NETGENPlugin_NETGEN_2D_ONLY. Renaming is useless as
41  * algorithm field "_name" can't be changed
42  */
43 class NETGENPlugin_NETGEN_2D_ONLY: public SMESH_2D_Algo
44 {
45 public:
46   NETGENPlugin_NETGEN_2D_ONLY(int hypId, int studyId, SMESH_Gen* gen);
47   virtual ~NETGENPlugin_NETGEN_2D_ONLY();
48
49   virtual bool CheckHypothesis(SMESH_Mesh&         aMesh,
50                                const TopoDS_Shape& aShape,
51                                Hypothesis_Status&  aStatus);
52
53   virtual bool Compute(SMESH_Mesh&         aMesh,
54                        const TopoDS_Shape& aShape);
55
56   virtual bool Evaluate(SMESH_Mesh& aMesh, const TopoDS_Shape& aShape,
57                         MapShapeNbElems& aResMap);
58
59 protected:
60   const StdMeshers_MaxElementArea*       _hypMaxElementArea;
61   const StdMeshers_LengthFromEdges*      _hypLengthFromEdges;
62   const StdMeshers_QuadranglePreference* _hypQuadranglePreference;
63   const NETGENPlugin_Hypothesis_2D*      _hypParameters;
64 };
65
66 #endif