Salome HOME
Copyrights update 2015.
[samples/datafiles.git] / Yacs / Schemas / bloc4.xml
1 <!--
2   Copyright (C) 2006-2015  CEA/DEN, EDF R&D
3
4   This library is free software; you can redistribute it and/or
5   modify it under the terms of the GNU Lesser General Public
6   License as published by the Free Software Foundation; either
7   version 2.1 of the License, or (at your option) any later version.
8
9   This library is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12   Lesser General Public License for more details.
13
14   You should have received a copy of the GNU Lesser General Public
15   License along with this library; if not, write to the Free Software
16   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17
18   See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19
20 -->
21 <proc>
22
23     <!-- types -->
24     <sequence name="dblevec" content="double"/>
25     <!-- inline -->
26     <!-- service -->
27
28     <inline name="node1" >
29                 <function name="f">
30                     <code>def f():</code>
31                     <code>  return "coucou" </code>
32                 </function>
33                 <outport name="p1" type="string"/>
34     </inline>
35     <inline name="node2" >
36                 <function name="f">
37                     <code>def f():</code>
38                     <code>  s1 = [3.14, 0.5, 1.29] </code>
39                     <code>  return s1 </code>
40                 </function>
41                 <outport name="s1" type="dblevec"/>
42     </inline>
43     <bloc name="b1" >
44         <inline name="node1" >
45                 <function name="f">
46                     <code>def f():</code>
47                     <code>  return "coucou" </code>
48                 </function>
49                 <outport name="p1" type="string"/>
50         </inline>
51         <inline name="node2" >
52                 <function name="f">
53                     <code>def f(s1):</code>
54                     <code>  print s1 </code>
55                     <code>  return s1 </code>
56                 </function>
57                 <inport name="s1" type="dblevec"/>
58                 <outport name="s1" type="dblevec"/>
59         </inline>
60         <bloc name="b2" >
61             <inline name="node1" >
62                 <function name="f">
63                     <code>def f(p1):</code>
64                     <code>  print p1;p1=2*p1 </code>
65                     <code>  return p1 </code>
66                 </function>
67                 <inport name="p1" type="string"/>
68                 <outport name="p1" type="string"/>
69             </inline>
70         </bloc>
71         <control> <fromnode>node1</fromnode> <tonode>b2</tonode> </control>
72     </bloc>
73
74     <!--control -->
75     <control> <fromnode>node2</fromnode> <tonode>b1</tonode> </control>
76
77     <!--datalinks -->
78     <datalink> <fromnode>node2</fromnode><fromport>s1</fromport>
79                <tonode>b1.node2</tonode> <toport>s1</toport> </datalink>
80
81     <!--parameters -->
82     <parameter>
83         <tonode>b1.b2.node1</tonode> <toport>p1</toport>
84         <value><string>coucou</string></value>
85     </parameter>
86
87 </proc>