Salome HOME
COTECH: Update names of DISTENE products
[plugins/ghs3dprlplugin.git] / src / GHS3DPRLPlugin / GHS3DPRLPlugin_Hypothesis.hxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D
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, or (at your option) any later version.
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 // ---
21 // File   : GHS3DPRLPlugin_Hypothesis.hxx
22 // Author : Christian VAN WAMBEKE (CEA) (from Hexotic plugin Lioka RAZAFINDRAZAKA)
23 // ---
24 //
25 #ifndef _GHS3DPRLPlugin_Hypothesis_HXX_
26 #define _GHS3DPRLPlugin_Hypothesis_HXX_
27
28 #include "GHS3DPRLPlugin_Defs.hxx"
29
30 #include "SMESH_Hypothesis.hxx"
31 #include "Utils_SALOME_Exception.hxx"
32
33 //  Parameters for work of GHS3DPRL
34 //
35
36 class GHS3DPRLPLUGIN_EXPORT GHS3DPRLPlugin_Hypothesis: public SMESH_Hypothesis
37 {
38 public:
39
40   GHS3DPRLPlugin_Hypothesis(int hypId, int studyId, SMESH_Gen* gen);
41
42   static const char* GetHypType() { return "MG-Tetra Parallel Parameters"; }
43
44   void                  SetMEDName(std::string theVal);
45   std::string           GetMEDName() const { return _MEDName; }
46
47   void                  SetNbPart(int theVal);
48   int                   GetNbPart() const { return _NbPart; }
49
50   void                  SetKeepFiles(bool theVal);
51   bool                  GetKeepFiles() const { return _KeepFiles; }
52
53   void                  SetBackground(bool theVal);
54   bool                  GetBackground() const { return _Background; }
55
56   void                  SetToMeshHoles(bool theVal);
57   bool                  GetToMeshHoles() const { return _ToMeshHoles; }
58
59   // the parameters default values
60
61   static std::string    GetDefaultMEDName();
62   static int            GetDefaultNbPart();
63   static bool           GetDefaultKeepFiles();
64   static bool           GetDefaultBackground();
65   static bool           GetDefaultToMeshHoles();
66
67   // Persistence
68   virtual std::ostream& SaveTo(std::ostream& save);
69   virtual std::istream& LoadFrom(std::istream& load);
70   friend std::ostream&  operator <<(std::ostream& save, GHS3DPRLPlugin_Hypothesis& hyp);
71   friend std::istream&  operator >>(std::istream& load, GHS3DPRLPlugin_Hypothesis& hyp);
72
73   /*!
74    * \brief Does nothing
75    * \param theMesh - the built mesh
76    * \param theShape - the geometry of interest
77    * \retval bool - always false
78    */
79   virtual bool          SetParametersByMesh(const SMESH_Mesh* theMesh, const TopoDS_Shape& theShape);
80   /*!
81    * \brief Initialize my parameter values by default parameters.
82    *  \retval bool - true if parameter values have been successfully defined
83    */
84   virtual bool          SetParametersByDefaults(const TDefaults& dflts, const SMESH_Mesh* theMesh=0);
85
86 private:
87   int          _countSubMesh;
88   int          _countTotal;
89   int          _nodeRefNumber;
90
91   std::string  _MEDName;     // generic path/name of med files
92   int          _NbPart;      // number of partitions
93   bool         _KeepFiles;   // keep intermediates tepal files or not
94   bool         _Background;  // tepal in background
95   bool         _ToMeshHoles;
96 };
97
98 #endif