Salome HOME
e019da84b06663858f18df863b45a33d3e73fbfd
[samples/datafiles.git] / Yacs / Schemas / switch6.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     -->
24     <!--types -->
25     <!--nodes -->
26     <inline name="n" >
27         <script>
28             <code>select=3</code>
29         </script>
30         <outport name="select" type="int"/>
31     </inline>
32     <inline name="n2" >
33         <script>
34             <code>print p1</code>
35         </script>
36         <inport name="p1" type="double"/>
37         <outport name="p1" type="double"/>
38     </inline>
39     <bloc name="b">
40     <switch name="b1">
41       <case id="1">
42         <inline name="n2" >
43           <script><code>print p1</code></script>
44           <inport name="p1" type="double"/>
45           <outport name="p1" type="double"/>
46         </inline>
47       </case>
48       <case id="3">
49           <inline name="n2" >
50             <script><code>print p1</code></script>
51             <inport name="p1" type="double"/>
52             <outport name="p1" type="double"/>
53           </inline>
54       </case>
55       <default>
56         <inline name="n2" >
57           <script><code>print p1</code></script>
58           <inport name="p1" type="double"/>
59           <outport name="p1" type="double"/>
60         </inline>
61       </default>
62     </switch>
63     </bloc>
64     <!--control links -->
65     <control> <fromnode>n</fromnode> <tonode>b</tonode> </control>
66     <control> <fromnode>b</fromnode> <tonode>n2</tonode> </control>
67     <!--data links -->
68     <datalink> <fromnode>n</fromnode><fromport>select</fromport>
69                <tonode>b.b1</tonode> <toport>select</toport> </datalink>
70     <datalink> <fromnode>b.b1.p1_n2</fromnode><fromport>p1</fromport>
71                <tonode>n2</tonode> <toport>p1</toport> </datalink>
72     <datalink> <fromnode>b.b1.p3_n2</fromnode><fromport>p1</fromport>
73                <tonode>n2</tonode> <toport>p1</toport> </datalink>
74     <datalink> <fromnode>b.b1.default_n2</fromnode><fromport>p1</fromport>
75                <tonode>n2</tonode> <toport>p1</toport> </datalink>
76     <!--parameters -->
77     <parameter>
78         <tonode>b.b1.p1_n2</tonode> <toport>p1</toport>
79         <value><double>23</double> </value>
80     </parameter>
81     <parameter>
82         <tonode>b.b1.p3_n2</tonode> <toport>p1</toport>
83         <value><double>54</double> </value>
84     </parameter>
85     <parameter>
86         <tonode>b.b1.default_n2</tonode> <toport>p1</toport>
87         <value><double>67</double> </value>
88     </parameter>
89
90 </proc>