]> SALOME platform Git repositories - modules/adao.git/commitdiff
Salome HOME
Improving internal information coherency
authorJean-Philippe ARGAUD <jean-philippe.argaud@edf.fr>
Mon, 15 Apr 2013 12:51:49 +0000 (14:51 +0200)
committerJean-Philippe ARGAUD <jean-philippe.argaud@edf.fr>
Mon, 15 Apr 2013 12:51:49 +0000 (14:51 +0200)
doc/using.rst
src/daSalome/daYacsSchemaCreator/methods.py

index f63e06b3a1eadfea5f74856a74fa65c1d06ab61a..1fdbfab9bc5528e4053df9cbc747166340e69a60 100644 (file)
@@ -199,7 +199,6 @@ menu). As an example, the output of the above simple case is the following::
    Entering in the assimilation study
    Name is set to........: Test
    Algorithm is set to...: Blue
-   Debug is set to.......: False
    Launching the analyse
 
    Optimal state: [0.5, 0.5, 0.5]
index 008683149ae4c1e320c5c4ee4c235ac860818d8c..432ae3b651645fa36d16447454b5114cea70c998 100644 (file)
@@ -429,6 +429,7 @@ def create_yacs_proc(study_config):
     node_script  = "#-*-coding:iso-8859-1-*-\n"
     node_script += "import sys, os \n"
     node_script += "filepath = \"" + os.path.dirname(script_filename) + "\"\n"
+    node_script += "filename = \"" + os.path.basename(script_filename) + "\"\n"
     node_script += "if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):\n"
     node_script += "  sys.path.insert(0,filepath)\n"
     node_script += script_str.read()
@@ -455,6 +456,7 @@ def create_yacs_proc(study_config):
     node_script  = "#-*-coding:iso-8859-1-*-\n"
     node_script += "import sys, os \n"
     node_script += "filepath = \"" + os.path.dirname(script_filename) + "\"\n"
+    node_script += "filename = \"" + os.path.basename(script_filename) + "\"\n"
     node_script += "if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):\n"
     node_script += "  sys.path.insert(0,filepath)\n"
     node_script += script_str.read()
@@ -482,6 +484,7 @@ def create_yacs_proc(study_config):
     node_script  = "#-*-coding:iso-8859-1-*-\n"
     node_script += "import sys, os, numpy, logging\n"
     node_script += "filepath = \"" + os.path.dirname(script_filename) + "\"\n"
+    node_script += "filename = \"" + os.path.basename(script_filename) + "\"\n"
     node_script += "if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):\n"
     node_script += "  sys.path.insert(0,filepath)\n"
     node_script += """# ==============================================\n"""
@@ -561,6 +564,7 @@ def create_yacs_proc(study_config):
     node_script  = "#-*-coding:iso-8859-1-*-\n"
     node_script += "import sys, os, numpy, logging\n"
     node_script += "filepath = \"" + os.path.dirname(script_filename) + "\"\n"
+    node_script += "filename = \"" + os.path.basename(script_filename) + "\"\n"
     node_script += "if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):\n"
     node_script += "  sys.path.insert(0,filepath)\n"
     node_script += """# ==============================================\n"""
@@ -645,6 +649,7 @@ def create_yacs_proc(study_config):
       node_script  = "#-*-coding:iso-8859-1-*-\n"
       node_script += "import sys, os \n"
       node_script += "filepath = \"" + os.path.dirname(script_filename) + "\"\n"
+      node_script += "filename = \"" + os.path.basename(script_filename) + "\"\n"
       node_script += "if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):\n"
       node_script += "  sys.path.insert(0,filepath)\n"
       node_script += script_str.read()
@@ -672,6 +677,7 @@ def create_yacs_proc(study_config):
       node_script  = "#-*-coding:iso-8859-1-*-\n"
       node_script += "import sys, os \n"
       node_script += "filepath = \"" + os.path.dirname(script_filename) + "\"\n"
+      node_script += "filename = \"" + os.path.basename(script_filename) + "\"\n"
       node_script += "if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):\n"
       node_script += "  sys.path.insert(0,filepath)\n"
       node_script += script_str.read()
@@ -698,6 +704,7 @@ def create_yacs_proc(study_config):
       node_script  = "#-*-coding:iso-8859-1-*-\n"
       node_script += "import sys, os, numpy, logging\n"
       node_script += "filepath = \"" + os.path.dirname(script_filename) + "\"\n"
+      node_script += "filename = \"" + os.path.basename(script_filename) + "\"\n"
       node_script += "if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):\n"
       node_script += "  sys.path.insert(0,filepath)\n"
       node_script += script_str.read()
@@ -779,6 +786,7 @@ def create_yacs_proc(study_config):
       node_script  = "#-*-coding:iso-8859-1-*-\n"
       node_script += "import sys, os, numpy, logging\n"
       node_script += "filepath = \"" + os.path.dirname(script_filename) + "\"\n"
+      node_script += "filename = \"" + os.path.basename(script_filename) + "\"\n"
       node_script += "if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):\n"
       node_script += "  sys.path.insert(0,filepath)\n"
       node_script += script_str.read()
@@ -1001,6 +1009,7 @@ def create_yacs_proc(study_config):
       node_script  = "#-*-coding:iso-8859-1-*-\n"
       node_script += "import sys, os \n"
       node_script += "filepath = \"" + os.path.dirname(analysis_file_name) + "\"\n"
+      node_script += "filename = \"" + os.path.basename(analysis_file_name) + "\"\n"
       node_script += "if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):\n"
       node_script += "  sys.path.insert(0,filepath)\n"
       node_script += default_script