Salome HOME
Copyright update 2022
[samples/pycalculator.git] / src / PYCALCULATOR / PYCALCULATOR_TEST.py
old mode 100755 (executable)
new mode 100644 (file)
index 042891d..fdfeeae
@@ -1,4 +1,4 @@
-# Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
+# Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
 #
 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -32,8 +32,8 @@ salome.salome_init()
 
 import PYCALCULATOR_ORB
 
+from medcoupling import *
 from MEDCouplingCorba import *
-from MEDCoupling import *
 from MEDLoader import *
 from MEDCouplingClient import *
 
@@ -42,7 +42,7 @@ pc = salome.lcc.FindOrLoadComponent('FactoryServer','PYCALCULATOR')
 medFile   = os.path.join(os.getenv("DATA_DIR"), "MedFiles", "pointe.med")
 meshName  = "maa1"
 fieldName = "fieldcelldoublevector"
-print medFile, meshName, fieldName
+print(medFile, meshName, fieldName)
 
 f = ReadFieldCell(medFile, meshName, 0, fieldName, -1, -1)
 forig = MEDCouplingFieldDoubleServant._this(f)
@@ -60,9 +60,9 @@ clt_f2 = MEDCouplingFieldDoubleClient.New(f2)
 clt_f3 = MEDCouplingFieldDoubleClient.New(f3)
 clt_f4 = MEDCouplingFieldDoubleClient.New(f4)
 
-print "clt_forig:", clt_forig
-print "clt_fcopy:", clt_fcopy
-print "clt_f1:", clt_f1
-print "clt_f2:", clt_f2
-print "clt_f3:", clt_f3
-print "clt_f4:", clt_f4
+print("clt_forig:", clt_forig)
+print("clt_fcopy:", clt_fcopy)
+print("clt_f1:", clt_f1)
+print("clt_f2:", clt_f2)
+print("clt_f3:", clt_f3)
+print("clt_f4:", clt_f4)