]> SALOME platform Git repositories - modules/smesh.git/blob - src/SMESH/SMESH_Hypothesis.hxx
Salome HOME
*** empty log message ***
[modules/smesh.git] / src / SMESH / SMESH_Hypothesis.hxx
1 //  SMESH SMESH : implementaion of SMESH idl descriptions
2 //
3 //  Copyright (C) 2003  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. 
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESH_Hypothesis.hxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef _SMESH_HYPOTHESIS_HXX_
30 #define _SMESH_HYPOTHESIS_HXX_
31
32 #include "SMESH_SMESH.hxx"
33
34 #include "SMESHDS_Hypothesis.hxx"
35
36 class SMESH_Gen;
37 class TopoDS_Shape;
38 class SMESH_Mesh;
39
40 class SMESH_EXPORT SMESH_Hypothesis: public SMESHDS_Hypothesis
41 {
42 public:
43   enum Hypothesis_Status // in the order of severity
44   {
45     HYP_OK,
46     HYP_MISSING,      // algo misses a hypothesis
47     HYP_CONCURENT,    // several applicable hypotheses
48     HYP_BAD_PARAMETER,// hypothesis has a bad parameter value
49     HYP_UNKNOWN_FATAL,//  --- all statuses below should be considered as fatal
50                       //      for Add/RemoveHypothesis operations
51     HYP_INCOMPATIBLE, // hypothesis does not fit algo
52     HYP_NOTCONFORM,   // not conform mesh is produced appling a hypothesis
53     HYP_ALREADY_EXIST,// such hypothesis already exist
54     HYP_BAD_DIM       // bad dimension
55   };
56   static bool IsStatusFatal(Hypothesis_Status theStatus)
57   { return theStatus >= HYP_UNKNOWN_FATAL; }
58
59   SMESH_Hypothesis(int hypId, int studyId, SMESH_Gen* gen);
60   virtual ~SMESH_Hypothesis();
61   int GetDim() const;
62   int GetStudyId() const;
63   void NotifySubMeshesHypothesisModification();
64   int GetShapeType() const;
65   const char* GetLibName() const;
66   void  SetLibName(const char* theLibName);
67
68   /*!
69    * \brief Initialize my parameter values by the mesh built on the geometry
70     * \param theMesh - the built mesh
71     * \param theShape - the geometry of interest
72     * \retval bool - true if parameter values have been successfully defined
73    */
74   virtual bool SetParametersByMesh(const SMESH_Mesh* theMesh, const TopoDS_Shape& theShape)=0;
75
76 protected:
77   SMESH_Gen* _gen;
78   int _studyId;
79   int _shapeType;
80   int _param_algo_dim;
81
82 private:
83   std::string _libName;
84 };
85
86 #endif