]> SALOME platform Git repositories - modules/smesh.git/blob - src/SMESH/SMESH_Hypothesis.cxx
Salome HOME
Debug
[modules/smesh.git] / src / SMESH / SMESH_Hypothesis.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, 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.
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 //  SMESH SMESH : implementaion of SMESH idl descriptions
23 //  File   : SMESH_Hypothesis.cxx
24 //  Author : Paul RASCLE, EDF
25 //  Module : SMESH
26 //
27 #include "SMESH_Hypothesis.hxx"
28 #include "SMESH_Gen.hxx"
29 #include "SMESH_subMesh.hxx"
30 #include "utilities.h"
31
32 using namespace std;
33
34 //=============================================================================
35 /*!
36  * 
37  */
38 //=============================================================================
39
40 SMESH_Hypothesis::SMESH_Hypothesis(int hypId,
41                                    int studyId,
42                                    SMESH_Gen* gen) : SMESHDS_Hypothesis(hypId)
43 {
44   //MESSAGE("SMESH_Hypothesis::SMESH_Hypothesis");
45   _gen = gen;
46   _studyId = studyId;
47   StudyContextStruct* myStudyContext = _gen->GetStudyContext(_studyId);
48   myStudyContext->mapHypothesis[_hypId] = this;
49   _type = PARAM_ALGO;
50   _shapeType = 0; // to be set by algo with TopAbs_Enum
51   _param_algo_dim = -1; // to be set by algo parameter
52 }
53
54 //=============================================================================
55 /*!
56  * 
57  */
58 //=============================================================================
59
60 SMESH_Hypothesis::~SMESH_Hypothesis()
61 {
62   MESSAGE("SMESH_Hypothesis::~SMESH_Hypothesis");
63 }
64
65 //=============================================================================
66 /*!
67  * 
68  */
69 //=============================================================================
70
71 int SMESH_Hypothesis::GetDim() const
72 {
73   int dim = 0;
74   switch (_type)
75     {
76     case ALGO_1D: dim = 1; break;
77     case ALGO_2D: dim = 2; break;
78     case ALGO_3D: dim = 3; break;
79     case PARAM_ALGO:
80       dim = ( _param_algo_dim < 0 ) ? -_param_algo_dim : _param_algo_dim; break;
81     }
82   return dim;
83 }
84
85 //=============================================================================
86 /*!
87  *  
88  */
89 //=============================================================================
90
91 int SMESH_Hypothesis::GetShapeType() const
92 {
93   return _shapeType;
94 }
95
96 //=============================================================================
97 /*!
98  * 
99  */
100 //=============================================================================
101
102 int SMESH_Hypothesis::GetStudyId() const
103 {
104   return _studyId;
105 }
106
107 //=============================================================================
108 /*!
109  * 
110  */
111 //=============================================================================
112
113 void SMESH_Hypothesis::NotifySubMeshesHypothesisModification()
114 {
115   MESSAGE("SMESH_Hypothesis::NotifySubMeshesHypothesisModification");
116
117   // for all meshes in study
118
119   StudyContextStruct* myStudyContext = _gen->GetStudyContext(_studyId);
120   map<int, SMESH_Mesh*>::iterator itm;
121   for (itm = myStudyContext->mapMesh.begin();
122        itm != myStudyContext->mapMesh.end();
123        itm++)
124     {
125       SMESH_Mesh* mesh = (*itm).second;
126       mesh->NotifySubMeshesHypothesisModification( this );
127     }
128 }
129
130 //=============================================================================
131 /*!
132  * 
133  */
134 //=============================================================================
135
136 const char* SMESH_Hypothesis::GetLibName() const
137 {
138   return _libName.c_str();
139 }
140
141 //=============================================================================
142 /*!
143  * 
144  */
145 //=============================================================================
146
147 void SMESH_Hypothesis::SetLibName(const char* theLibName)
148 {
149   _libName = string(theLibName);
150 }
151
152 //=============================================================================
153 /*!
154  * 
155  */
156 //=============================================================================
157 void SMESH_Hypothesis::SetParameters(const std::list<std::string>& theParameters)
158 {
159   _parameters = theParameters;
160 }
161
162 //=============================================================================
163 /*!
164  * 
165  */
166 //=============================================================================
167 std::list<std::string> SMESH_Hypothesis::GetParameters() const
168 {
169   return _parameters;
170 }