Salome HOME
check_eficas cherche le logiciel eficas
[modules/adao.git] / bin / qtEficas_adao_study.py.in
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 """
5    Ce module sert à lancer EFICAS pour Adao
6 """
7
8 import sys
9 # Configuration de l'installation
10 INSTALLDIR = "@EFICAS_DIR@"
11 sys.path[:0]=[INSTALLDIR]
12 ADAO_INSTALL_DIR = "@PYTHON_SITE@/salome/daEficas"
13 sys.path[:0]=[ADAO_INSTALL_DIR]
14
15 # Configuration
16 import prefs
17 import prefs_ADAO
18
19 # Modules Eficas
20 from InterfaceQT4 import eficas_go
21 eficas_go.lance_eficas(code=prefs.code)