Salome HOME
Copyrights update 2015.
[samples/datafiles.git] / Yacs / Schemas / foreach6.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     <!-- a double for each loop with 3 branches with a service node corba -->
23     <!--types -->
24     <sequence name="intvec" content="int"/>
25     <sequence name="intvecvec" content="intvec"/>
26
27     <!--nodes -->
28     <inline name="node0" >
29       <script>
30         <code>p1=[i for i in range(10)]</code>
31         <code>p1=[p1,p1,p1]</code>
32       </script>
33       <outport name="p1" type="intvecvec"/>
34     </inline>
35
36     <foreach name="b1" nbranch="3" type="intvec" >
37     <foreach name="b2" nbranch="3" type="int" >
38       <service name="node2" >
39         <ref>corbaname:rir:#test.my_context/Echo.Object</ref>
40         <method>echoLong</method>
41         <inport name="p1" type="int"/>
42         <outport name="p1" type="int"/>
43       </service>
44     </foreach>
45     </foreach>
46
47     <inline name="node1" >
48       <script>
49         <code>print p1</code>
50       </script>
51       <inport name="p1" type="intvecvec"/>
52       <outport name="p1" type="intvecvec"/>
53     </inline>
54     <inline name="node3" >
55       <script>
56         <code>print p1</code>
57       </script>
58       <inport name="p1" type="intvecvec"/>
59     </inline>
60
61     <!--control -->
62     <control> <fromnode>node0</fromnode> <tonode>b1</tonode> </control>
63     <control> <fromnode>b1</fromnode> <tonode>node1</tonode> </control>
64
65     <!--datalink -->
66     <datalink>
67       <fromnode>node0</fromnode><fromport>p1</fromport>
68       <tonode>b1</tonode> <toport>SmplsCollection</toport>
69     </datalink>
70     <datalink>
71       <fromnode>b1</fromnode><fromport>SmplPrt</fromport>
72       <tonode>b1.b2</tonode> <toport>SmplsCollection</toport>
73     </datalink>
74     <datalink>
75       <fromnode>b1.b2</fromnode><fromport>SmplPrt</fromport>
76       <tonode>b1.b2.node2</tonode> <toport>p1</toport>
77     </datalink>
78     <datalink>
79       <fromnode>b1.b2.node2</fromnode><fromport>p1</fromport>
80       <tonode>node1</tonode> <toport>p1</toport>
81     </datalink>
82     <datalink>
83       <fromnode>node1</fromnode><fromport>p1</fromport>
84       <tonode>node3</tonode> <toport>p1</toport>
85     </datalink>
86
87     <!--parameters -->
88
89 </proc>