Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[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_QuadranglePreference_i.hxx"
42 #include "StdMeshers_QuadraticMesh_i.hxx"
43 #include "StdMeshers_MaxElementArea_i.hxx"
44 #include "StdMeshers_MaxElementVolume_i.hxx"
45 #include "StdMeshers_NotConformAllowed_i.hxx"
46
47 #include "StdMeshers_Regular_1D_i.hxx"
48 #include "StdMeshers_MEFISTO_2D_i.hxx"
49 #include "StdMeshers_Quadrangle_2D_i.hxx"
50 #include "StdMeshers_Hexa_3D_i.hxx"
51
52 template <class T> class StdHypothesisCreator_i:public HypothesisCreator_i<T>
53 {
54   // as we have 'module StdMeshers' in SMESH_BasicHypothesis.idl
55   virtual std::string GetModuleName() { return "StdMeshers"; }
56 };
57
58 //=============================================================================
59 /*!
60  *
61  */
62 //=============================================================================
63
64 extern "C"
65 {
66   GenericHypothesisCreator_i* GetHypothesisCreator (const char* aHypName)
67   {
68     MESSAGE("Get HypothesisCreator for " << aHypName);
69
70     GenericHypothesisCreator_i* aCreator = 0;
71
72     // Hypotheses
73     if      (strcmp(aHypName, "LocalLength") == 0)
74       aCreator = new StdHypothesisCreator_i<StdMeshers_LocalLength_i>;
75     else if (strcmp(aHypName, "NumberOfSegments") == 0)
76       aCreator = new StdHypothesisCreator_i<StdMeshers_NumberOfSegments_i>;
77     else if (strcmp(aHypName, "LengthFromEdges") == 0)
78       aCreator = new StdHypothesisCreator_i<StdMeshers_LengthFromEdges_i>;
79     else if (strcmp(aHypName, "NotConformAllowed") == 0)
80       aCreator = new StdHypothesisCreator_i<StdMeshers_NotConformAllowed_i>;
81     else if (strcmp(aHypName, "Propagation") == 0)
82       aCreator = new StdHypothesisCreator_i<StdMeshers_Propagation_i>;
83     else if (strcmp(aHypName, "MaxElementArea") == 0)
84       aCreator = new StdHypothesisCreator_i<StdMeshers_MaxElementArea_i>;
85     else if (strcmp(aHypName, "MaxElementVolume") == 0)
86       aCreator = new StdHypothesisCreator_i<StdMeshers_MaxElementVolume_i>;
87     else if (strcmp(aHypName, "StartEndLength") == 0)
88       aCreator = new StdHypothesisCreator_i<StdMeshers_StartEndLength_i>;
89     else if (strcmp(aHypName, "Deflection1D") == 0)
90       aCreator = new StdHypothesisCreator_i<StdMeshers_Deflection1D_i>;
91     else if (strcmp(aHypName, "Arithmetic1D") == 0)
92       aCreator = new StdHypothesisCreator_i<StdMeshers_Arithmetic1D_i>;
93     else if (strcmp(aHypName, "AutomaticLength") == 0)
94       aCreator = new StdHypothesisCreator_i<StdMeshers_AutomaticLength_i>;
95     else if (strcmp(aHypName, "QuadranglePreference") == 0)
96       aCreator = new StdHypothesisCreator_i<StdMeshers_QuadranglePreference_i>;
97     else if (strcmp(aHypName, "QuadraticMesh") == 0)
98       aCreator = new StdHypothesisCreator_i<StdMeshers_QuadraticMesh_i>;
99
100     // Algorithms
101     else if (strcmp(aHypName, "Regular_1D") == 0)
102       aCreator = new StdHypothesisCreator_i<StdMeshers_Regular_1D_i>;
103     else if (strcmp(aHypName, "MEFISTO_2D") == 0)
104       aCreator = new StdHypothesisCreator_i<StdMeshers_MEFISTO_2D_i>;
105     else if (strcmp(aHypName, "Quadrangle_2D") == 0)
106       aCreator = new StdHypothesisCreator_i<StdMeshers_Quadrangle_2D_i>;
107     else if (strcmp(aHypName, "Hexa_3D") == 0)
108       aCreator = new StdHypothesisCreator_i<StdMeshers_Hexa_3D_i>;
109     else ;
110
111     return aCreator;
112   }
113 }