Salome HOME
#BOS 37851: cast tuple types for compilation on FD38
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_DriverParam.hxx
1 // Copyright (C) 2007-2023  CEA, EDF, 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, or (at your option) any later version.
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
23 //  File   : NETGENPlugin_DriverParam.hxx
24 //  Author : Yoann AUDOUIN, EDF
25 //  Module : NETGEN
26 //
27
28 #ifndef _NETGENPLUGIN_DRIVERPARAM_HXX_
29 #define _NETGENPLUGIN_DRIVERPARAM_HXX_
30
31 #include <string>
32
33 struct netgen_params{
34   // Params from NETGENPlugin_Mesher
35   // True if _hypParameters is not null
36   bool has_netgen_param=true;
37   double maxh;
38   double minh;
39   double segmentsperedge;
40   double grading;
41   double curvaturesafety;
42   int secondorder;
43   int quad;
44   bool optimize;
45   int fineness;
46   bool uselocalh;
47   bool merge_solids;
48   double chordalError;
49   int optsteps2d;
50   int optsteps3d;
51   double elsizeweight;
52   int opterrpow;
53   bool delaunay;
54   bool checkoverlap;
55   bool checkchartboundary;
56   int closeedgefac;
57
58   // Number of threads for the mesher
59   int nbThreads;
60
61   // True if we have a mesh size file or local size info
62   bool has_local_size = false;
63   std::string meshsizefilename;
64
65   // Params from NETGEN3D
66   // True if _hypMaxElementVolume is not null
67   bool has_maxelementvolume_hyp=false;
68   double maxElementVolume=0.0;
69
70   // Params from NETGEN2D
71   bool has_LengthFromEdges_hyp=false;
72
73 };
74
75 void printNetgenParams(netgen_params& aParams);
76
77 void importNetgenParams(const std::string param_file, netgen_params& aParams);
78 void exportNetgenParams(const std::string param_file, netgen_params& aParams);
79
80 #endif