Salome HOME
PAL10237. Add StdMeshers_AutomaticLength 1D hypothesis
[modules/smesh.git] / src / StdMeshers_I / StdMeshers_i.cxx
1 //  SMESH StdMeshers : implementaion of SMESH idl descriptions
2 //
3 //  Copyright (C) 2003  CEA
4 // 
5 //  This library is free software; you can redistribute it and/or 
6 //  modify it under the terms of the GNU Lesser General Public 
7 //  License as published by the Free Software Foundation; either 
8 //  version 2.1 of the License. 
9 // 
10 //  This library is distributed in the hope that it will be useful, 
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13 //  Lesser General Public License for more details. 
14 // 
15 //  You should have received a copy of the GNU Lesser General Public 
16 //  License along with this library; if not, write to the Free Software 
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
18 // 
19 //  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
20 //
21 //
22 //
23 //  File   : StdMeshers_i.cxx
24 //  Author : Julia DOROVSKIKH
25 //  Module : SMESH
26 //  $Header$
27
28 using namespace std;
29 #include "SMESH_Gen_i.hxx"
30
31 #include "utilities.h"
32
33 #include "StdMeshers_LocalLength_i.hxx"
34 #include "StdMeshers_AutomaticLength_i.hxx"
35 #include "StdMeshers_StartEndLength_i.hxx"
36 #include "StdMeshers_Arithmetic1D_i.hxx"
37 #include "StdMeshers_NumberOfSegments_i.hxx"
38 #include "StdMeshers_Deflection1D_i.hxx"
39 #include "StdMeshers_Propagation_i.hxx"
40 #include "StdMeshers_LengthFromEdges_i.hxx"
41 #include "StdMeshers_MaxElementArea_i.hxx"
42 #include "StdMeshers_MaxElementVolume_i.hxx"
43 #include "StdMeshers_NotConformAllowed_i.hxx"
44
45 #include "StdMeshers_Regular_1D_i.hxx"
46 #include "StdMeshers_MEFISTO_2D_i.hxx"
47 #include "StdMeshers_Quadrangle_2D_i.hxx"
48 #include "StdMeshers_Hexa_3D_i.hxx"
49
50 //=============================================================================
51 /*!
52  *
53  */
54 //=============================================================================
55
56 extern "C"
57 {
58   GenericHypothesisCreator_i* GetHypothesisCreator (const char* aHypName)
59   {
60     MESSAGE("Get HypothesisCreator for " << aHypName);
61
62     GenericHypothesisCreator_i* aCreator = 0;
63
64     // Hypotheses
65     if      (strcmp(aHypName, "LocalLength") == 0)
66       aCreator = new HypothesisCreator_i<StdMeshers_LocalLength_i>;
67     else if (strcmp(aHypName, "NumberOfSegments") == 0)
68       aCreator = new HypothesisCreator_i<StdMeshers_NumberOfSegments_i>;
69     else if (strcmp(aHypName, "LengthFromEdges") == 0)
70       aCreator = new HypothesisCreator_i<StdMeshers_LengthFromEdges_i>;
71     else if (strcmp(aHypName, "NotConformAllowed") == 0)
72       aCreator = new HypothesisCreator_i<StdMeshers_NotConformAllowed_i>;
73     else if (strcmp(aHypName, "Propagation") == 0)
74       aCreator = new HypothesisCreator_i<StdMeshers_Propagation_i>;
75     else if (strcmp(aHypName, "MaxElementArea") == 0)
76       aCreator = new HypothesisCreator_i<StdMeshers_MaxElementArea_i>;
77     else if (strcmp(aHypName, "MaxElementVolume") == 0)
78       aCreator = new HypothesisCreator_i<StdMeshers_MaxElementVolume_i>;
79     else if (strcmp(aHypName, "StartEndLength") == 0)
80       aCreator = new HypothesisCreator_i<StdMeshers_StartEndLength_i>;
81     else if (strcmp(aHypName, "Deflection1D") == 0)
82       aCreator = new HypothesisCreator_i<StdMeshers_Deflection1D_i>;
83     else if (strcmp(aHypName, "Arithmetic1D") == 0)
84       aCreator = new HypothesisCreator_i<StdMeshers_Arithmetic1D_i>;
85     else if (strcmp(aHypName, "AutomaticLength") == 0)
86       aCreator = new HypothesisCreator_i<StdMeshers_AutomaticLength_i>;
87
88     // Algorithms
89     else if (strcmp(aHypName, "Regular_1D") == 0)
90       aCreator = new HypothesisCreator_i<StdMeshers_Regular_1D_i>;
91     else if (strcmp(aHypName, "MEFISTO_2D") == 0)
92       aCreator = new HypothesisCreator_i<StdMeshers_MEFISTO_2D_i>;
93     else if (strcmp(aHypName, "Quadrangle_2D") == 0)
94       aCreator = new HypothesisCreator_i<StdMeshers_Quadrangle_2D_i>;
95     else if (strcmp(aHypName, "Hexa_3D") == 0)
96       aCreator = new HypothesisCreator_i<StdMeshers_Hexa_3D_i>;
97     else ;
98
99     return aCreator;
100   }
101 }