Salome HOME
00d1fac35712762aed9327997fdb63e417fe6135
[samples/datafiles.git] / Yacs / Schemas / switch3.xml
1 <!--
2   Copyright (C) 2006-2014  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 branch selected by a previous python node)
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     <switch name="b1">
33       <case id="1">
34         <inline name="n2" >
35           <script><code>print p1</code></script>
36           <inport name="p1" type="double"/>
37           <outport name="p1" type="double"/>
38         </inline>
39       </case>
40       <case id="3">
41         <inline name="n2" >
42           <script><code>print p1</code></script>
43           <inport name="p1" type="double"/>
44           <outport name="p1" type="double"/>
45         </inline>
46       </case>
47       <default>
48         <inline name="n2" >
49           <script><code>print p1</code></script>
50           <inport name="p1" type="double"/>
51           <outport name="p1" type="double"/>
52         </inline>
53       </default>
54     </switch>
55     <!--control links -->
56     <control> <fromnode>n</fromnode> <tonode>b1</tonode> </control>
57     <!--data links -->
58     <datalink> <fromnode>n</fromnode><fromport>select</fromport>
59                <tonode>b1</tonode> <toport>select</toport> </datalink>
60     <!--parameters -->
61     <parameter>
62         <tonode>b1.p1_n2</tonode> <toport>p1</toport>
63         <value><double>23</double> </value>
64     </parameter>
65     <parameter>
66         <tonode>b1.p3_n2</tonode> <toport>p1</toport>
67         <value><double>54</double> </value>
68     </parameter>
69     <parameter>
70         <tonode>b1.default_n2</tonode> <toport>p1</toport>
71         <value><double>54</double> </value>
72     </parameter>
73
74
75 </proc>