Salome HOME
Copyright update 2022
[plugins/hybridplugin.git] / tests / advanced_text_option.py
index 357bd4e8d76fe7aa91a0816d2ca3e5a6e8e82676..5b91c598cdcf17256157f477f93b80073354c210 100644 (file)
@@ -1,10 +1,27 @@
 # -*- coding: utf-8 -*-
+# Copyright (C) 2018-2022  CEA/DEN, EDF R&D
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
 
 import sys
 import salome
 
 salome.salome_init()
-theStudy = salome.myStudy
 
 ###
 ### GEOM component
@@ -16,7 +33,7 @@ import math
 import SALOMEDS
 
 
-geompy = geomBuilder.New(theStudy)
+geompy = geomBuilder.New()
 
 # first cylinder
 r1 = 0.5
@@ -73,7 +90,7 @@ geompy.addToStudyInFather( piquage, corner, 'corner' )
 import  SMESH, SALOMEDS
 from salome.smesh import smeshBuilder
 
-smesh = smeshBuilder.New(theStudy)
+smesh = smeshBuilder.New()
 
 Mesh_with_imprinting_set_by_groups = smesh.Mesh(piquage)
 NETGEN_2D_1 = Mesh_with_imprinting_set_by_groups.Triangle(algo=smeshBuilder.NETGEN_1D2D)
@@ -105,7 +122,7 @@ if not isDone:
 
 Nb_elems_0 = Mesh_with_imprinting_set_by_groups.NbVolumes()
 
-print "Nb_elems_0: ", Nb_elems_0
+print("Nb_elems_0: ", Nb_elems_0)
 
 Inlet_x_3 = Mesh_with_imprinting_set_by_groups.GroupOnGeom(Inlet_x,'Inlet_x',SMESH.FACE)
 Inlet_z_3 = Mesh_with_imprinting_set_by_groups.GroupOnGeom(Inlet_z,'Inlet_z',SMESH.FACE)
@@ -121,10 +138,8 @@ if not isDone:
 
 Nb_elems_1 = Mesh_with_imprinting_set_by_groups.NbVolumes()
 
-print "Nb_elems_1: ", Nb_elems_1
+print("Nb_elems_1: ", Nb_elems_1)
 
 # Check that the number of elements is changed by the option
 assert Nb_elems_1> 1.5*Nb_elems_0, "Advanced option as text does not work"
 
-if salome.sg.hasDesktop():
-  salome.sg.updateObjBrowser(True)