X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FTools%2FblocFissure%2Fgmu%2Fgeomsmesh.py;h=f7a21b9df5e17347e4592fa1dc4bc6842d39f8a5;hp=baa874ee7ce3fc59f63f73a7f4f811e257930814;hb=0fc0831670e27a5611b941c52dc152fd63964515;hpb=77b224bfc97465d694c206f026d02fc5ea70a0a3 diff --git a/src/Tools/blocFissure/gmu/geomsmesh.py b/src/Tools/blocFissure/gmu/geomsmesh.py index baa874ee7..f7a21b9df 100644 --- a/src/Tools/blocFissure/gmu/geomsmesh.py +++ b/src/Tools/blocFissure/gmu/geomsmesh.py @@ -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