Salome HOME
ordre des commandes a la racine
[tools/eficas.git] / Openturns_Wrapper / prefs_OPENTURNS_WRAPPER.py
index 50616278dcf85fd620995bb24c478abfb4358475..b60be59609fbacfbd063f8f9e0f6d55e7e8adda6 100644 (file)
@@ -1,37 +1,33 @@
 # -*- coding: utf-8 -*-
-#            CONFIGURATION MANAGEMENT OF EDF VERSION
-# ======================================================================
-# COPYRIGHT (C) 1991 - 2002  EDF R&D                  WWW.CODE-ASTER.ORG
-# THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
-# IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
-# THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE LICENSE, OR
-# (AT YOUR OPTION) ANY LATER VERSION.
+# Copyright (C) 2007-2015   EDF R&D
 #
-# THIS PROGRAM 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
-# GENERAL PUBLIC LICENSE FOR MORE DETAILS.
+# 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.
 #
-# YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE
-# ALONG WITH THIS PROGRAM; IF NOT, WRITE TO EDF R&D CODE_ASTER,
-#    1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE.
+# 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 os, sys
 # Les variables pouvant positionnees sont :
 print "import des prefs de OPENTURNS"
 
-# repIni sert à localiser le fichier 
+# repIni sert a localiser le fichier 
 # initialdir sert comme directory initial des QFileDialog
 # positionnee a repin au debut mise a jour dans configuration
 repIni=os.path.dirname(os.path.abspath(__file__))
-initialdir=repIni 
+INSTALLDIR=os.path.join(repIni,'..')
+sys.path[:0]=[INSTALLDIR]
 
-# INSTALLDIR sert à localiser l'installation d'Eficas
-INSTALLDIR=os.path.abspath(os.path.join(repIni,'..'))
-sys.path.insert(0,INSTALLDIR)
 
 # Codage des strings qui accepte les accents (en remplacement de 'ascii')
 # lang indique la langue utilisée pour les chaines d'aide : fr ou ang
@@ -39,14 +35,21 @@ lang='fr'
 encoding='iso-8859-1'
 
 # Acces a la documentation
-rep_cata        = INSTALLDIR
-path_doc        = os.path.join(rep_cata,'Doc')
+path_doc        = os.path.join(INSTALLDIR,'Doc')
 exec_acrobat    = "/usr/bin/xpdf"
 savedir         = os.environ['HOME']
 
 
 # OpenTURNS Python module
 OpenTURNS_path=""
+if len(OpenTURNS_path) > 0: sys.path[:0]=[OpenTURNS_path]
+
 # Choix des catalogues
-if len(OpenTURNS_path) > 0:
-    sys.path[:0]=[OpenTURNS_path]
+from Editeur.catadesc import CatalogDescription
+
+catalogues = (
+    CatalogDescription(identifier = "OPENTURNS_WRAPPER_V4",
+                       cata_file_path = os.path.join(os.path.abspath(repIni), 'OpenTURNS_Cata_Wrapper_V4.py'),
+                       file_format = "openturns_wrapper"),
+)
+