Salome HOME
Update copyrights
[modules/smesh.git] / src / Tools / blocFissure / gmu / compoundFromList.py
index 6787b252045ac7e9f60cde6889a320b04165c79b..0c728442f92fed1e4bc9a0fce9f465e4501b1765 100644 (file)
@@ -1,7 +1,28 @@
 # -*- coding: utf-8 -*-
+# Copyright (C) 2014-2019  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 logging
-from geomsmesh import geompy
+from .geomsmesh import geompy
+from .geomsmesh import geomPublish
+from .geomsmesh import geomPublishInFather
+from . import initLog
 
 def compoundFromList(elements, nom=None):
   """
@@ -19,13 +40,14 @@ def compoundFromList(elements, nom=None):
       
   if nom is not None:
     for i,a in enumerate(shapeList):
-      nom = nom +"%d"%i
-      logging.debug('nom: %s',nom)
-      geompy.addToStudy(a, nom)
+      nomi = nom +"%d"%i
+      logging.debug('nom: %s',nomi)
+      geomPublish(initLog.debug, a, nomi)
 
   shapeCompound = None
   if len(shapeList) > 0:
     shapeCompound =geompy.MakeCompound(shapeList)
-
+    nomc = "compound_%s"%nom
+    geomPublish(initLog.debug, shapeCompound, nomc)
   return shapeCompound