]> SALOME platform Git repositories - modules/adao.git/blob - resources/ADAOSchemaCatalog.xml
Salome HOME
Compatibility updates and documentation corrections
[modules/adao.git] / resources / ADAOSchemaCatalog.xml
1 <?xml version='1.0' encoding='utf-8' ?>
2 <!--
3   Copyright (C) 2008-2018 EDF R&D
4
5   This file is part of SALOME ADAO module
6
7   This library is free software; you can redistribute it and/or
8   modify it under the terms of the GNU Lesser General Public
9   License as published by the Free Software Foundation; either
10   version 2.1 of the License.
11
12   This library is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15   Lesser General Public License for more details.
16
17   You should have received a copy of the GNU Lesser General Public
18   License along with this library; if not, write to the Free Software
19   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20
21   See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22
23   Author: Jean-Philippe Argaud, jean-philippe.argaud@edf.fr, EDF R&D
24 -->
25 <proc>
26
27   <objref name="computeAD" id="python:computeAD:1.0">
28     <base>pyobj</base>
29   </objref>
30
31   <!-- Types for parametric computations -->
32   <!-- TODO On devrait pouvoir le lire depuis le KERNEL !!!-->
33   <type name="long" kind="int"/>
34   <struct name="SALOME_TYPES/Parameter">
35     <member type="string" name="name"></member>
36     <member type="string" name="value"></member>
37   </struct>
38   <sequence content="SALOME_TYPES/Parameter" name="SALOME_TYPES/ParameterList"></sequence>
39   <sequence content="double" name="SALOME_TYPES/Variable"></sequence>
40   <sequence content="SALOME_TYPES/Variable" name="SALOME_TYPES/VariableSequence"></sequence>
41   <sequence content="SALOME_TYPES/VariableSequence" name="SALOME_TYPES/StateSequence"></sequence>
42   <sequence content="SALOME_TYPES/StateSequence" name="SALOME_TYPES/TimeSequence"></sequence>
43   <sequence content="string" name="SALOME_TYPES/VarList"></sequence>
44   <struct name="SALOME_TYPES/ParametricInput">
45     <member type="SALOME_TYPES/VarList" name="inputVarList"></member>
46     <member type="SALOME_TYPES/VarList" name="outputVarList"></member>
47     <member type="SALOME_TYPES/TimeSequence" name="inputValues"></member>
48     <member type="SALOME_TYPES/ParameterList" name="specificParameters"></member>
49   </struct>
50   <struct name="SALOME_TYPES/ParametricOutput">
51     <member type="SALOME_TYPES/TimeSequence" name="outputValues"></member>
52     <member type="SALOME_TYPES/ParameterList" name="specificOutputInfos"></member>
53     <member type="long" name="returnCode"></member>
54     <member type="string" name="errorMessage"></member>
55   </struct>
56
57
58   <inline name="CreateAssimilationStudy">
59     <script><code>
60
61 <![CDATA[
62 import numpy, logging
63 logging.debug("CREATE YI Entering in CreateAssimilationStudy")
64 print("Entering in the assimilation study")
65 print("Name is set to........:", Name)
66 print("Algorithm is set to...:", Algorithm)
67
68 try:
69     # Create Assimilation study
70     import adao
71     from daYacsIntegration.daStudy import *
72     assim_study = daStudy(Name, Algorithm, Debug)
73
74     logging.debug("CREATE YI Data entered are:")
75
76     # Algorithm parameters
77     if "AlgorithmParameters" in locals():
78       logging.debug("CREATE YI AlgorithmParameters is %s"%AlgorithmParameters)
79       assim_study.setYIAlgorithmParameters(AlgorithmParameters)
80
81     # Background
82     if "Background" in locals():
83       logging.debug("CREATE YI Background is set")
84       logging.debug("CREATE YI BackgroundType is %s"%BackgroundType)
85       logging.debug("CREATE YI BackgroundStored is %s"%BackgroundStored)
86       assim_study.setYIBackgroundType(BackgroundType)
87       assim_study.setYIBackgroundStored(BackgroundStored)
88       assim_study.setYIBackground(Background)
89
90     # CheckingPoint
91     if "CheckingPoint" in locals():
92       logging.debug("CREATE YI CheckingPoint is set")
93       logging.debug("CREATE YI CheckingPointType is %s"%CheckingPointType)
94       logging.debug("CREATE YI CheckingPointStored is %s"%CheckingPointStored)
95       assim_study.setYICheckingPointType(CheckingPointType)
96       assim_study.setYICheckingPointStored(CheckingPointStored)
97       assim_study.setYICheckingPoint(CheckingPoint)
98
99     # ControlInput
100     if "ControlInput" in locals():
101       logging.debug("CREATE YI ControlInput is set")
102       logging.debug("CREATE YI ControlInputType is %s"%ControlInputType)
103       logging.debug("CREATE YI ControlInputStored is %s"%ControlInputStored)
104       assim_study.setYIControlInputType(ControlInputType)
105       assim_study.setYIControlInputStored(ControlInputStored)
106       assim_study.setYIControlInput(ControlInput)
107
108     # Observation
109     if "Observation" in locals():
110       logging.debug("CREATE YI Observation is set")
111       logging.debug("CREATE YI ObservationType is %s"%ObservationType)
112       logging.debug("CREATE YI ObservationStored is %s"%ObservationStored)
113       assim_study.setYIObservationType(ObservationType)
114       assim_study.setYIObservationStored(ObservationStored)
115       assim_study.setYIObservation(Observation)
116
117     # BackgroundError
118     if "BackgroundError" in locals():
119       logging.debug("CREATE YI BackgroundError is set")
120       logging.debug("CREATE YI BackgroundErrorType is %s"%BackgroundErrorType)
121       logging.debug("CREATE YI BackgroundErrorStored is %s"%BackgroundErrorStored)
122       assim_study.setYIBackgroundErrorType(BackgroundErrorType)
123       assim_study.setYIBackgroundErrorStored(BackgroundErrorStored)
124       assim_study.setYIBackgroundError(BackgroundError)
125
126     # ObservationError
127     if "ObservationError" in locals():
128       logging.debug("CREATE YI ObservationError is set")
129       logging.debug("CREATE YI ObservationErrorType is %s"%ObservationErrorType)
130       logging.debug("CREATE YI ObservationErrorStored is %s"%ObservationErrorStored)
131       assim_study.setYIObservationErrorType(ObservationErrorType)
132       assim_study.setYIObservationErrorStored(ObservationErrorStored)
133       assim_study.setYIObservationError(ObservationError)
134
135     # EvolutionError
136     if "EvolutionError" in locals():
137       logging.debug("CREATE YI EvolutionError is set")
138       logging.debug("CREATE YI EvolutionErrorType is %s"%EvolutionErrorType)
139       logging.debug("CREATE YI EvolutionErrorStored is %s"%EvolutionErrorStored)
140       assim_study.setYIEvolutionErrorType(EvolutionErrorType)
141       assim_study.setYIEvolutionErrorStored(EvolutionErrorStored)
142       assim_study.setYIEvolutionError(EvolutionError)
143
144     # ObservationOperator
145     ObservationOperatorOk = 0
146     if "ObservationOperator" in locals():
147       logging.debug("CREATE YI ObservationOperator is set")
148       logging.debug("CREATE YI ObservationOperatorType is %s"%ObservationOperatorType)
149       assim_study.setYIObservationOperatorType("Matrix", ObservationOperatorType)
150       assim_study.setYIObservationOperator("Matrix", ObservationOperator)
151       ObservationOperatorOk = 1
152
153     if ObservationOperatorOk == 0:
154       if "ObservationOperatorDirect" in locals():
155         logging.debug("CREATE YI ObservationOperatorDirect is %s"%ObservationOperatorDirect)
156         assim_study.setYIObservationOperatorType("Direct", "Function")
157         assim_study.setYIObservationOperator("Direct", ObservationOperatorDirect)
158       if "ObservationOperatorTangent" in locals():
159         logging.debug("CREATE YI ObservationOperatorTangent is %s"%ObservationOperatorTangent)
160         assim_study.setYIObservationOperatorType("Tangent", "Function")
161         assim_study.setYIObservationOperator("Tangent", ObservationOperatorTangent)
162       if "ObservationOperatorAdjoint" in locals():
163         logging.debug("CREATE YI ObservationOperatorAdjoint is %s"%ObservationOperatorAdjoint)
164         assim_study.setYIObservationOperatorType("Adjoint", "Function")
165         assim_study.setYIObservationOperator("Adjoint", ObservationOperatorAdjoint)
166
167     # EvolutionModel
168     EvolutionModelOk = 0
169     if "EvolutionModel" in locals():
170       logging.debug("CREATE YI EvolutionModel is set")
171       logging.debug("CREATE YI EvolutionModelType is %s"%EvolutionModelType)
172       assim_study.setYIEvolutionModelType("Matrix", EvolutionModelType)
173       assim_study.setYIEvolutionModel("Matrix", EvolutionModel)
174       EvolutionModelOk = 1
175
176     if EvolutionModelOk == 0:
177       if "EvolutionModelDirect" in locals():
178         logging.debug("CREATE YI EvolutionModelDirect is %s"%EvolutionModelDirect)
179         assim_study.setYIEvolutionModelType("Direct", "Function")
180         assim_study.setYIEvolutionModel("Direct", EvolutionModelDirect)
181       if "EvolutionModelTangent" in locals():
182         logging.debug("CREATE YI EvolutionModelTangent is %s"%EvolutionModelTangent)
183         assim_study.setYIEvolutionModelType("Tangent", "Function")
184         assim_study.setYIEvolutionModel("Tangent", EvolutionModelTangent)
185       if "EvolutionModelAdjoint" in locals():
186         logging.debug("CREATE YI EvolutionModelAdjoint is %s"%EvolutionModelAdjoint)
187         assim_study.setYIEvolutionModelType("Adjoint", "Function")
188         assim_study.setYIEvolutionModel("Adjoint", EvolutionModelAdjoint)
189
190     # Variables
191     for name, size in zip(InputVariablesNames, InputVariablesSizes):
192       assim_study.setYIInputVariable(name, size)
193     for name, size in zip(OutputVariablesNames, OutputVariablesSizes):
194       assim_study.setYIOutputVariable(name, size)
195
196     if has_observers:
197       logging.debug("CREATE YI Observers keys are %s"%observers.keys())
198       # Adding observers to the study
199       for observer_name in observers.keys():
200         scheduler = ""
201         info = ""
202         number = str(observers[observer_name]["number"])
203         if "scheduler" in observers[observer_name].keys():
204           scheduler = observers[observer_name]["scheduler"]
205         if "info" in observers[observer_name].keys():
206           info = observers[observer_name]["info"]
207         assim_study.addYIObserver(observer_name, scheduler, info, number)
208
209 except Exception as e:
210     if isinstance(e, SyntaxError): msg = "at %s: %s"%(e.offset, e.text)
211     else: msg = ""
212     raise ValueError("during execution, the following error occurs:\n\n%s %s\n\nSee also the potential messages, which can show the origin of the above error, in the launching terminal."%(str(e),msg))
213
214 Study = assim_study
215 ]]>
216
217 </code></script>
218     <inport name="Name" type="string"/>
219     <inport name="Algorithm" type="string"/>
220     <inport name="Debug" type="bool"/>
221     <inport name="InputVariablesNames" type="stringvec"/>
222     <inport name="InputVariablesSizes" type="intvec"/>
223     <inport name="OutputVariablesNames" type="stringvec"/>
224     <inport name="OutputVariablesSizes" type="intvec"/>
225     <inport name="has_observers" type="bool"/>
226     <inport name="observers" type="pyobj"/>
227     <outport name="Study" type="pyobj"/>
228   </inline>
229
230   <inline name="CreateNumpyMatrixFromString">
231     <script><code><![CDATA[
232 import numpy, logging
233 logging.debug("CREATE YI Entering in CreateNumpyMatrixFromString")
234 if (matrix_in_string.find("array")>-1) or (matrix_in_string.find("matrix")>-1):
235     matrix_in_string=matrix_in_string.replace("array","numpy.array")
236     matrix_in_string=matrix_in_string.replace("matrix","numpy.matrix")
237     exec("matrix="+matrix_in_string)
238     matrix = numpy.matrix(matrix)
239 else:
240     matrix = numpy.matrix(matrix_in_string)
241 type = "Matrix"
242 logging.debug("CREATE YI Matrix is %s"%matrix)
243 ]]></code></script>
244     <inport name="matrix_in_string" type="string"/>
245     <outport name="matrix" type="pyobj"/>
246     <outport name="type" type="string"/>
247     <outport name="stored" type="bool"/>
248   </inline>
249
250   <inline name="CreateNumpyScalarSparseMatrixFromString">
251     <script><code><![CDATA[
252 import numpy, logging
253 logging.debug("CREATE YI Entering in CreateNumpyScalarSparseMatrixFromString")
254 if (matrix_in_string.find("array")>-1) or (matrix_in_string.find("matrix")>-1):
255     matrix_in_string=matrix_in_string.replace("array","numpy.array")
256     matrix_in_string=matrix_in_string.replace("matrix","numpy.matrix")
257     exec("matrix="+matrix_in_string)
258     matrix = numpy.matrix(matrix)
259 else:
260     matrix = numpy.matrix(matrix_in_string)
261 type = "ScalarSparseMatrix"
262 logging.debug("CREATE YI ScalarSparseMatrix is %s"%matrix)
263 ]]></code></script>
264     <inport name="matrix_in_string" type="string"/>
265     <outport name="matrix" type="pyobj"/>
266     <outport name="type" type="string"/>
267     <outport name="stored" type="bool"/>
268   </inline>
269
270   <inline name="CreateNumpyDiagonalSparseMatrixFromString">
271     <script><code><![CDATA[
272 import numpy, logging
273 logging.debug("CREATE YI Entering in CreateNumpyDiagonalSparseMatrixFromString")
274 if (matrix_in_string.find("array")>-1) or (matrix_in_string.find("matrix")>-1):
275     matrix_in_string=matrix_in_string.replace("array","numpy.array")
276     matrix_in_string=matrix_in_string.replace("matrix","numpy.matrix")
277     exec("matrix="+matrix_in_string)
278     matrix = numpy.matrix(matrix)
279 else:
280     matrix = numpy.matrix(matrix_in_string)
281 type = "DiagonalSparseMatrix"
282 logging.debug("CREATE YI DiagonalSparseMatrix is %s"%matrix)
283 ]]></code></script>
284     <inport name="matrix_in_string" type="string"/>
285     <outport name="matrix" type="pyobj"/>
286     <outport name="type" type="string"/>
287     <outport name="stored" type="bool"/>
288   </inline>
289
290   <inline name="CreateNumpyMatrixFromScript">
291     <script><code><![CDATA[
292 import logging, sys, os
293 logging.debug("CREATE YI Entering in CreateNumpyMatrixFromScript")
294 type = "Matrix"
295
296 # Get file path and filename
297 try:
298     if sys.path.count(studydir)==0 or (sys.path.count(studydir)>0 and sys.path.index(studydir)>0):
299         sys.path.insert(0,studydir)
300 except:
301     pass
302 filepath = os.path.dirname(script)
303 filename = os.path.basename(script)
304 module_name = os.path.splitext(filename)[0]
305 if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):
306     sys.path.insert(0,filepath)
307
308 ]]></code></script>
309     <inport name="script" type="string"/>
310     <outport name="type" type="string"/>
311     <outport name="stored" type="bool"/>
312   </inline>
313
314   <inline name="CreateNumpyScalarSparseMatrixFromScript">
315     <script><code><![CDATA[
316 import logging, sys, os
317 logging.debug("CREATE YI Entering in CreateNumpyScalarSparseMatrixFromScript")
318 type = "ScalarSparseMatrix"
319
320 # Get file path and filename
321 try:
322     if sys.path.count(studydir)==0 or (sys.path.count(studydir)>0 and sys.path.index(studydir)>0):
323         sys.path.insert(0,studydir)
324 except:
325     pass
326 filepath = os.path.dirname(script)
327 filename = os.path.basename(script)
328 module_name = os.path.splitext(filename)[0]
329 if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):
330     sys.path.insert(0,filepath)
331
332 ]]></code></script>
333     <inport name="script" type="string"/>
334     <outport name="type" type="string"/>
335     <outport name="stored" type="bool"/>
336   </inline>
337
338   <inline name="CreateNumpyDiagonalSparseMatrixFromScript">
339     <script><code><![CDATA[
340 import logging, sys, os
341 logging.debug("CREATE YI Entering in CreateNumpyDiagonalSparseMatrixFromScript")
342 type = "DiagonalSparseMatrix"
343
344 # Get file path and filename
345 try:
346     if sys.path.count(studydir)==0 or (sys.path.count(studydir)>0 and sys.path.index(studydir)>0):
347         sys.path.insert(0,studydir)
348 except:
349     pass
350 filepath = os.path.dirname(script)
351 filename = os.path.basename(script)
352 module_name = os.path.splitext(filename)[0]
353 if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):
354     sys.path.insert(0,filepath)
355
356 ]]></code></script>
357     <inport name="script" type="string"/>
358     <outport name="type" type="string"/>
359     <outport name="stored" type="bool"/>
360   </inline>
361
362   <inline name="CreateNumpyVectorFromString">
363     <script><code><![CDATA[
364 import numpy, logging
365 logging.debug("CREATE YI Entering in CreateNumpyVectorFromString")
366 if (vector_in_string.find("array")>-1) or (vector_in_string.find("matrix")>-1):
367     vector_in_string=vector_in_string.replace("array","numpy.array")
368     vector_in_string=vector_in_string.replace("matrix","numpy.matrix")
369     exec("vector="+vector_in_string)
370     vector = numpy.matrix(vector)
371 else:
372     vector = numpy.matrix(vector_in_string)
373 type = "Vector"
374 logging.debug("Vector is %s"%vector)
375 ]]></code></script>
376     <inport name="vector_in_string" type="string"/>
377     <outport name="vector" type="pyobj"/>
378     <outport name="type" type="string"/>
379     <outport name="stored" type="bool"/>
380   </inline>
381
382   <inline name="CreateNumpyVectorFromScript">
383     <script><code><![CDATA[
384 import logging, sys, os
385 logging.debug("CREATE YI Entering in CreateNumpyVectorFromScript")
386 type = "Vector"
387
388 # Get file path and filename
389 try:
390     if sys.path.count(studydir)==0 or (sys.path.count(studydir)>0 and sys.path.index(studydir)>0):
391         sys.path.insert(0,studydir)
392 except:
393     pass
394 filepath = os.path.dirname(script)
395 filename = os.path.basename(script)
396 module_name = os.path.splitext(filename)[0]
397 if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):
398     sys.path.insert(0,filepath)
399
400 ]]></code></script>
401     <inport name="script" type="string"/>
402     <outport name="type" type="string"/>
403     <outport name="stored" type="bool"/>
404   </inline>
405
406   <inline name="CreateNumpyVectorSerieFromString">
407     <script><code><![CDATA[
408 import numpy, logging
409 logging.debug("CREATE YI Entering in CreateNumpyVectorSerieFromString")
410 vector_in_list = eval(str(vector_in_string),{},{})
411 vector = numpy.matrix(vector_in_list)
412 type = "VectorSerie"
413 logging.debug("VectorSerie is %s"%vector)
414 ]]></code></script>
415     <inport name="vector_in_string" type="string"/>
416     <outport name="vector" type="pyobj"/>
417     <outport name="type" type="string"/>
418     <outport name="stored" type="bool"/>
419   </inline>
420
421   <inline name="CreateNumpyVectorSerieFromScript">
422     <script><code><![CDATA[
423 import logging, sys, os
424 logging.debug("CREATE YI Entering in CreateNumpyVectorSerieFromScript")
425 type = "VectorSerie"
426
427 # Get file path and filename
428 try:
429     if sys.path.count(studydir)==0 or (sys.path.count(studydir)>0 and sys.path.index(studydir)>0):
430         sys.path.insert(0,studydir)
431 except:
432     pass
433 filepath = os.path.dirname(script)
434 filename = os.path.basename(script)
435 module_name = os.path.splitext(filename)[0]
436 if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):
437     sys.path.insert(0,filepath)
438
439 ]]></code></script>
440     <inport name="script" type="string"/>
441     <outport name="type" type="string"/>
442     <outport name="stored" type="bool"/>
443   </inline>
444
445   <inline name="SimpleExecuteDirectAlgorithm">
446     <script><code><![CDATA[
447 import logging
448 logging.debug("EXECUTE Entering in SimpleExecuteDirectAlgorithm")
449 from daYacsIntegration.daStudy import *
450 ADD = Study.getResults()
451 ADD.analyze()
452 ]]></code></script>
453     <inport name="Study" type="pyobj"/>
454     <outport name="Study" type="pyobj"/>
455   </inline>
456
457   <inline name="SimpleUserAnalysis">
458     <script><code><![CDATA[
459 #-*- coding: utf-8 -*-
460 import logging
461 logging.debug("TERMINATE Entering in SimpleUserAnalysis")
462 ADD = Study.getResults()
463 # User code is below
464
465 ]]></code></script>
466     <inport name="Study" type="pyobj"/>
467   </inline>
468
469   <inline name="FakeOptimizerLoopNode">
470     <script><code><![CDATA[
471 import logging
472 logging.debug("EXECUTE Entering in FakeOptimizerLoopNode")
473 result = None
474 ]]></code></script>
475     <inport name="computation" type="SALOME_TYPES/ParametricInput"/>
476     <outport name="result" type="SALOME_TYPES/ParametricOutput"/>
477   </inline>
478
479   <inline name="CreateDictFromString">
480     <script><code><![CDATA[
481 import logging, sys, os
482 logging.debug("CREATE YI Entering in CreateDictFromString")
483 dico = eval(dict_in_string)
484 ]]></code></script>
485     <inport name="dict_in_string" type="string"/>
486   </inline>
487
488   <inline name="CreateDictFromScript">
489     <script><code><![CDATA[
490 import logging, sys, os
491 logging.debug("CREATE YI Entering in CreateDictFromScript")
492
493 # Get file path and filename
494 try:
495     if sys.path.count(studydir)==0 or (sys.path.count(studydir)>0 and sys.path.index(studydir)>0):
496         sys.path.insert(0,studydir)
497 except:
498     pass
499 filepath = os.path.dirname(script)
500 filename = os.path.basename(script)
501 module_name = os.path.splitext(filename)[0]
502 if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):
503     sys.path.insert(0,filepath)
504
505 ]]></code></script>
506     <inport name="script" type="string"/>
507   </inline>
508
509   <inline name="UserDataInitFromScript">
510     <script><code><![CDATA[
511 import logging, sys, os
512 logging.debug("CREATE YI Entering in UserDataInitFromScript")
513
514 # Get file path and filename
515 try:
516     if sys.path.count(studydir)==0 or (sys.path.count(studydir)>0 and sys.path.index(studydir)>0):
517         sys.path.insert(0,studydir)
518 except:
519     pass
520 filepath = os.path.dirname(script)
521 filename = os.path.basename(script)
522 module_name = os.path.splitext(filename)[0]
523 if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):
524     sys.path.insert(0,filepath)
525
526 ]]></code></script>
527     <inport name="script" type="string"/>
528     <outport name="init_data" type="pyobj"/>
529   </inline>
530
531   <inline name="ReadForSwitchNode">
532     <script><code><![CDATA[
533 import logging
534 logging.debug("CREATE YI Entering in ReadForSwitchNode")
535 logging.debug("       with input data : "+str(data["specificParameters"]))
536 switch_value = -1
537 for param in data["specificParameters"]:
538   if param["name"] == "switch_value":
539     switch_value = int(param["value"])
540 logging.debug("       switching to value : "+str(switch_value))
541 ]]></code></script>
542     <inport name="data" type="SALOME_TYPES/ParametricInput"/>
543     <outport name="data" type="SALOME_TYPES/ParametricInput"/>
544     <outport name="switch_value" type="int"/>
545   </inline>
546
547   <inline name="ExtractDataNode">
548     <script><code><![CDATA[
549 import logging
550 logging.debug("TERMINATE Entering in ExtractDataNode")
551 try:
552   import cPickle as pickle
553 except:
554   import pickle
555 from daCore.AssimilationStudy import AssimilationStudy
556 var = None
557 info = None
558 for param in data["specificParameters"]:
559   if param["name"] == "var":
560     var = pickle.loads(param["value"])
561   if param["name"] == "info":
562     info = param["value"]
563 ]]></code></script>
564     <inport name="data" type="SALOME_TYPES/ParametricInput"/>
565     <outport name="var" type="pyobj"/>
566     <outport name="info" type="pyobj"/>
567   </inline>
568
569   <inline name="ObservationNodeString">
570     <script><code><![CDATA[]]></code></script>
571     <inport name="var" type="pyobj"/>
572     <inport name="info" type="pyobj"/>
573   </inline>
574
575   <inline name="ObservationNodeFile">
576     <script><code><![CDATA[execfile(script)]]></code></script>
577     <inport name="var"    type="pyobj"/>
578     <inport name="info"   type="pyobj"/>
579     <inport name="script" type="string"/>
580   </inline>
581
582   <inline name="EndObservationNode">
583     <script><code><![CDATA[
584 # Create a fake output object.
585 # An observer is always successful.
586 output = {}
587 output["outputValues"]        = [[[[]]]]
588 output["specificOutputInfos"] = []
589 output["returnCode"]          = 0
590 output["errorMessage"]        = ""
591 ]]></code></script>
592     <outport name="output" type="SALOME_TYPES/ParametricOutput"/>
593   </inline>
594
595   <inline name="SetObserversNode">
596     <script><code><![CDATA[
597 #print("Setting observers")
598 ]]></code></script>
599     <outport name="has_observers" type="bool"/>
600     <outport name="observers" type="pyobj"/>
601   </inline>
602 </proc>