Salome HOME
[EDF27562] : 2 new methods to simulate computation to ease test in charge YACS
[modules/kernel.git] / src / Basics / KernelBasis.i
1 // Copyright (C) 2021-2022  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 %module KernelBasis
21
22 %{
23 #include "KernelBasis.hxx"
24 #include "HeatMarcel.hxx"
25 using namespace SALOME;
26 %}
27
28 %include "std_string.i"
29
30 %rename (HeatMarcel) HeatMarcelSwig;
31
32 bool getSSLMode();
33 void setSSLMode(bool sslMode);
34
35 bool getGUIMode();
36 void setGUIMode(bool guiMode);
37
38 std::string getIOROfEmbeddedNS();
39 void setIOROfEmbeddedNS(const std::string& ior);
40
41 double GetTimeAdjustmentCst();
42
43 %inline
44 {
45 PyObject *HeatMarcelSwig(double timeAjustment, unsigned int nbThreads = 0)
46 {
47   double timeInS = 0.0;
48   long double piVal = HeatMarcel(timeAjustment,timeInS,nbThreads);
49   PyObject *ret(PyTuple_New(2));
50   PyTuple_SetItem(ret,0,SWIG_From_double((double)piVal));
51   PyTuple_SetItem(ret,1,SWIG_From_double(timeInS));
52   return ret;
53 }
54 }