X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FTools%2Fsmesh_plugins.py;h=3fedbd2815f6c8d20ec6c651c02c171dcbc7decc;hb=02593a6a3db29a782e1ecf55bac36c3f38537850;hp=29d25e4473e009e838ee96870a53b56bf760bd8f;hpb=b0a908c0d20341651771d0249fb10882f54b2aad;p=modules%2Fsmesh.git diff --git a/src/Tools/smesh_plugins.py b/src/Tools/smesh_plugins.py index 29d25e447..3fedbd281 100644 --- a/src/Tools/smesh_plugins.py +++ b/src/Tools/smesh_plugins.py @@ -1,5 +1,5 @@ -# -*- coding: iso-8859-1 -*- -# Copyright (C) 2011-2014 EDF R&D +# -*- coding: utf-8 -*- +# Copyright (C) 2011-2015 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 @@ -46,3 +46,18 @@ salome_pluginsmanager.AddFunction('ReMesh with MGCleaner', salome_pluginsmanager.AddFunction('Meshed Pipe with a crack', 'Create a mesh with blocFissure tool', fissureCoudeDlg) + +# ZCracks plugin requires the module EFICAS to be installed +# thus it is first tested if this module is available before +# adding the plugin to salome_pluginsmanager +enable_zcracks = True +try: + import eficasSalome +except: + enable_zcracks = False + +if enable_zcracks: + from zcracks_plugin import ZcracksLct + salome_pluginsmanager.AddFunction('Run Zcrack', + 'Run Zcrack', + ZcracksLct)