Salome HOME
Copyright update 2021
[modules/smesh.git] / src / StdMeshers_I / StdMeshers_NumberOfSegments_i.hxx
1 // Copyright (C) 2007-2021  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, or (at your option) any later version.
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
23 //  SMESH SMESH_I : idl implementation based on 'SMESH' unit's classes
24 //  File   : StdMeshers_NumberOfSegments_i.hxx
25 //           Moved here from SMESH_NumberOfSegments_i.hxx
26 //  Author : Paul RASCLE, EDF
27 //  Module : SMESH
28 //
29 #ifndef _SMESH_NUMBEROFSEGMENTS_I_HXX_
30 #define _SMESH_NUMBEROFSEGMENTS_I_HXX_
31
32 #include "SMESH_StdMeshers_I.hxx"
33
34 #include <SALOMEconfig.h>
35 #include CORBA_SERVER_HEADER(SMESH_Mesh)
36 #include CORBA_SERVER_HEADER(SMESH_BasicHypothesis)
37
38 #include "StdMeshers_Reversible1D_i.hxx"
39 #include "StdMeshers_NumberOfSegments.hxx"
40
41 // ======================================================
42 // Number of segments hypothesis
43 // ======================================================
44 class STDMESHERS_I_EXPORT StdMeshers_NumberOfSegments_i:
45   public virtual POA_StdMeshers::StdMeshers_NumberOfSegments,
46   public virtual SMESH_Hypothesis_i,
47   public virtual StdMeshers_Reversible1D_i
48 {
49 public:
50   // Constructor
51   StdMeshers_NumberOfSegments_i( PortableServer::POA_ptr thePOA,
52                                  ::SMESH_Gen*            theGenImpl );
53   // Destructor
54   virtual ~StdMeshers_NumberOfSegments_i();
55
56   // Builds point distribution according to passed function
57   SMESH::double_array* BuildDistributionExpr( const char*, CORBA::Long, CORBA::Long );
58   SMESH::double_array* BuildDistributionTab( const SMESH::double_array&, CORBA::Long, CORBA::Long );
59
60   // Set number of segments
61   void SetNumberOfSegments( CORBA::Long theSegmentsNumber );
62   // Get number of segments
63   CORBA::Long GetNumberOfSegments();
64
65   // Set distribution type
66   void SetDistrType(CORBA::Long typ);
67   // Get distribution type
68   CORBA::Long GetDistrType();
69
70   // Set scalar factor
71   void SetScaleFactor( CORBA::Double theScaleFactor );
72   // Get scalar factor
73   CORBA::Double GetScaleFactor();
74
75   // Set table function for distribution DT_TabFunc
76   void SetTableFunction(const SMESH::double_array& table);
77   // Get table function for distribution DT_TabFunc
78   SMESH::double_array* GetTableFunction();
79
80   // Set expression function for distribution DT_ExprFunc
81   void SetExpressionFunction(const char* expr);
82   // Get expression function for distribution DT_ExprFunc
83   char* GetExpressionFunction();
84
85   // Set the exponent mode on/off
86   void SetConversionMode( CORBA::Long conv );
87   // Returns true if the exponent mode is set
88   CORBA::Long ConversionMode();
89
90   // Get implementation
91   ::StdMeshers_NumberOfSegments* GetImpl();
92   
93   // Verify whether hypothesis supports given entity type 
94   CORBA::Boolean IsDimSupported( SMESH::Dimension type );
95
96
97   // Methods for copying mesh definition to other geometry
98
99   // Return geometry this hypothesis depends on. Return false if there is no geometry parameter
100   virtual bool getObjectsDependOn( std::vector< std::string > & entryArray,
101                                    std::vector< int >         & subIDArray ) const;
102
103   // Set new geometry instead of that returned by getObjectsDependOn()
104   virtual bool setObjectsDependOn( std::vector< std::string > & entryArray,
105                                    std::vector< int >         & subIDArray );
106  protected:
107   virtual std::string getMethodOfParameter(const int paramIndex, int nbVars) const;
108 };
109
110 #endif