Salome HOME
Merge V8_3_BR branch.
[tools/medcoupling.git] / src / ParaMEDMEM_Swig / test_NonCoincidentDEC.py
index 341f1b1f1b7d9f8eda4773b3cca4d2813673bd76..5df6ca3637c1f32d548b20e19f7c939a509868b0 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #  -*- coding: iso-8859-1 -*-
-# Copyright (C) 2007-2014  CEA/DEN, EDF R&D
+# Copyright (C) 2007-2016  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
@@ -27,11 +27,11 @@ MPI_Init(sys.argv)
 size = MPI_Comm_size(MPI_COMM_WORLD)
 rank = MPI_Comm_rank(MPI_COMM_WORLD)
 if size != 5:
-    raise RuntimeError, "Expect MPI_COMM_WORLD size == 5"
+    raise RuntimeError("Expect MPI_COMM_WORLD size == 5")
 
 nproc_source = 3
-procs_source = range( nproc_source )
-procs_target = range( size - nproc_source + 1, size)
+procs_source = list(range(nproc_source))
+procs_target = list(range(size - nproc_source + 1, size))
 
 interface = CommInterface()
 
@@ -50,17 +50,17 @@ icocofield = 0
 
 dec = NonCoincidentDEC(source_group, target_group)
 
-data_dir = os.environ['MED_ROOT_DIR']
+data_dir = os.environ['MEDCOUPLING_ROOT_DIR']
 tmp_dir  = os.environ['TMP']
 if tmp_dir == '':
     tmp_dir = "/tmp"
     pass
 
-filename_xml1 = data_dir + "/share/salome/resources/med/square1_split"
-filename_xml2 = data_dir + "/share/salome/resources/med/square2_split"
+filename_xml1 = data_dir + "/share/resources/med/square1_split"
+filename_xml2 = data_dir + "/share/resources/med/square2_split"
 
 MPI_Barrier(MPI_COMM_WORLD)
-    
+
 if source_group.containsMyRank():
 
     filename = filename_xml1 + str(rank+1) + ".med"
@@ -114,12 +114,12 @@ if source_group.containsMyRank():
     field_before_int = [parafield.getVolumeIntegral(1)]
     MPI_Bcast(field_before_int, 1, MPI_DOUBLE, 0, MPI_COMM_WORLD);
     dec.synchronize()
-    print "DEC usage"
+    print("DEC usage")
     dec.setForcedRenormalization(False)
 
     dec.sendData()
     pass
-    
+
 if target_group.containsMyRank():
 
     MPI_Bcast(field_before_int, 1, MPI_DOUBLE, 0, MPI_COMM_WORLD)
@@ -134,11 +134,11 @@ MPI_Bcast(field_after_int , 1, MPI_DOUBLE, size-1, MPI_COMM_WORLD)
 
 epsilon = 1e-6
 if abs(field_before_int[0] - field_after_int[0]) > epsilon:
-    print "Field before is not equal field after: %s != %s"%\
-          (field_before_int[0],field_after_int[0])
+    print("Field before is not equal field after: %s != %s"%\
+          (field_before_int[0],field_after_int[0]))
     pass
 
 
 MPI_Barrier(MPI_COMM_WORLD)
 MPI_Finalize()
-print "# End of testNonCoincidentDEC"
+print("# End of testNonCoincidentDEC")