X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FTools%2Fsmesh_plugins.py;h=e8798921d31b735624022f8f90952cd638dbde1a;hb=aba3768b2fb489bffaaf6ef830e2bf0d87b0483f;hp=2ec28ecf03e7cec8cd08d02f5f283610e5b35a49;hpb=985e3a36299a495197a5cfab7ab31d17365f3e1f;p=modules%2Fsmesh.git diff --git a/src/Tools/smesh_plugins.py b/src/Tools/smesh_plugins.py index 2ec28ecf0..e8798921d 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 +# 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 @@ -24,7 +24,6 @@ import salome_pluginsmanager from spadderPlugin import runSpadderPlugin from meshcut_plugin import MeshCut from yamsplug_plugin import YamsLct -from zcracks_plugin import ZcracksLct from MGCleanerplug_plugin import MGCleanerLct from blocFissure.ihm.fissureCoude_plugin import fissureCoudeDlg @@ -47,6 +46,18 @@ salome_pluginsmanager.AddFunction('ReMesh with MGCleaner', salome_pluginsmanager.AddFunction('Meshed Pipe with a crack', 'Create a mesh with blocFissure tool', fissureCoudeDlg) -salome_pluginsmanager.AddFunction('Run Zcrack', - 'Run Zcrack', - ZcracksLct) + +# 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)