Salome HOME
Copyright update 2020
[modules/smesh.git] / src / Tools / blocFissure / gmu / geomsmesh.py
index baa874ee7ce3fc59f63f73a7f4f811e257930814..f7a21b9df5e17347e4592fa1dc4bc6842d39f8a5 100644 (file)
@@ -1,25 +1,43 @@
 # -*- coding: utf-8 -*-
+# Copyright (C) 2014-2020  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
-logging.info('start')
-from initLog import getLogLevel
+#logging.info('start')
+from . import initLog
 
 import salome
 salome.salome_init()
 
 from salome.geom import geomBuilder
-geompy = geomBuilder.New(salome.myStudy)
+geompy = geomBuilder.New()
 
 from salome.smesh import smeshBuilder
-smesh = smeshBuilder.New(salome.myStudy)
+smesh = smeshBuilder.New()
 
-logging.debug("initialisation de geompy et smesh OK")
+logging.debug("initialisation de geompy et smesh OK")
 
-def geomPublishDebug(aShape, aName):
-  if getLogLevel() <= 1:
+def geomPublish(level,aShape, aName):
+  if initLog.getLogLevel() <= level:
     geompy.addToStudy(aShape, aName)
     
-def geomPublishDebugInFather(aFather, aShape, aName):
-  if getLogLevel() <= 1:
+def geomPublishInFather(level, aFather, aShape, aName):
+  if initLog.getLogLevel() <= level:
     geompy.addToStudyInFather(aFather, aShape, aName)
     
\ No newline at end of file