Salome HOME
Merge branch 'V7_dev'
[modules/med.git] / src / MEDCalc / cmp / MEDPresentationContour.cxx
1 // Copyright (C) 2016  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 #include "MEDPresentationContour.hxx"
21
22 void
23 MEDPresentationContour::internalGeneratePipeline()
24 {
25   PyGILState_STATE _gil_state = PyGILState_Ensure();
26
27   std::string cmd = std::string("import pvsimple as pvs;");
28   cmd += getRenderViewCommand(_params.viewMode); // define __view1
29
30   cmd += std::string("__obj1 = pvs.MEDReader(FileName='") + _fileName + std::string("');");
31   cmd += std::string("__isovolume1 = pvs.IsoVolume(Input=__obj1);");
32   cmd += std::string("__disp1 = pvs.Show(__isovolume1, __view1);");
33   cmd += std::string("pvs.ColorBy(__disp1, ('") + _fieldType + std::string("', '") + _fieldName + std::string("'));");
34   cmd += std::string("__disp1.SetScalarBarVisibility(__view1, True);");
35   cmd += std::string("__disp1.RescaleTransferFunctionToDataRangeOverTime();");
36   cmd += std::string("pvs.Render();");
37
38   //std::cerr << "Python command:" << std::endl;
39   //std::cerr << cmd << std::endl;
40   PyRun_SimpleString(cmd.c_str());
41   // Retrieve Python object for internal storage:
42   PyObject* obj = getPythonObjectFromMain("__isovolume1");
43   PyObject* disp = getPythonObjectFromMain("__disp1");
44   pushInternal(obj, disp);
45
46   PyGILState_Release(_gil_state);
47 }