Salome HOME
4bfc1cdcf9b1e438888f16538a492d1d3799e97e
[samples/datafiles.git] / Yacs / Schemas / switch4.xml
1 <!--
2   Copyright (C) 2006-2019  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 python node in a switch (case 3 initialized by node)
23         connection on default
24     -->
25     <!--types -->
26     <!--nodes -->
27     <inline name="n" >
28         <script>
29             <code>select=3</code>
30         </script>
31         <outport name="select" type="int"/>
32     </inline>
33     <inline name="n2" >
34         <script>
35             <code>print(p1)</code>
36         </script>
37         <inport name="p1" type="double"/>
38         <outport name="p1" type="double"/>
39     </inline>
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     <!--control links -->
64     <control> <fromnode>n</fromnode> <tonode>b1</tonode> </control>
65     <control> <fromnode>b1</fromnode> <tonode>n2</tonode> </control>
66     <!--data links -->
67     <datalink> <fromnode>n</fromnode><fromport>select</fromport>
68                <tonode>b1</tonode> <toport>select</toport> </datalink>
69     <datalink> <fromnode>b1.p1_n2</fromnode><fromport>p1</fromport>
70                <tonode>n2</tonode> <toport>p1</toport> </datalink>
71     <datalink> <fromnode>b1.p3_n2</fromnode><fromport>p1</fromport>
72                <tonode>n2</tonode> <toport>p1</toport> </datalink>
73     <datalink> <fromnode>b1.default_n2</fromnode><fromport>p1</fromport>
74                <tonode>n2</tonode> <toport>p1</toport> </datalink>
75     <!--parameters -->
76     <parameter>
77         <tonode>b1.p1_n2</tonode> <toport>p1</toport>
78         <value><double>23</double> </value>
79     </parameter>
80     <parameter>
81         <tonode>b1.p3_n2</tonode> <toport>p1</toport>
82         <value><double>54</double> </value>
83     </parameter>
84     <parameter>
85         <tonode>b1.default_n2</tonode> <toport>p1</toport>
86         <value><double>67</double> </value>
87     </parameter>
88
89 </proc>