Salome HOME
Fix for "23669: [CEA 13186] YACS xml scheme files with calls to print function need...
[samples/datafiles.git] / Yacs / Schemas / switch5.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 python node in a bloc in a switch (case 3 selected by previous 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         <bloc name="b">
50           <inline name="n2" >
51             <script><code>print(p1)</code></script>
52             <inport name="p1" type="double"/>
53             <outport name="p1" type="double"/>
54           </inline>
55         </bloc>
56       </case>
57       <default>
58         <inline name="n2" >
59           <script><code>print(p1)</code></script>
60           <inport name="p1" type="double"/>
61           <outport name="p1" type="double"/>
62         </inline>
63       </default>
64     </switch>
65     <!--control links -->
66     <control> <fromnode>n</fromnode> <tonode>b1</tonode> </control>
67     <control> <fromnode>b1</fromnode> <tonode>n2</tonode> </control>
68     <!--data links -->
69     <datalink> <fromnode>n</fromnode><fromport>select</fromport>
70                <tonode>b1</tonode> <toport>select</toport> </datalink>
71     <datalink> <fromnode>b1.p1_n2</fromnode><fromport>p1</fromport>
72                <tonode>n2</tonode> <toport>p1</toport> </datalink>
73     <datalink> <fromnode>b1.p3_b.n2</fromnode><fromport>p1</fromport>
74                <tonode>n2</tonode> <toport>p1</toport> </datalink>
75     <datalink> <fromnode>b1.default_n2</fromnode><fromport>p1</fromport>
76                <tonode>n2</tonode> <toport>p1</toport> </datalink>
77     <!--parameters -->
78     <parameter>
79         <tonode>b1.p1_n2</tonode> <toport>p1</toport>
80         <value><double>23</double> </value>
81     </parameter>
82     <parameter>
83         <tonode>b1.p3_b.n2</tonode> <toport>p1</toport>
84         <value><double>54</double> </value>
85     </parameter>
86     <parameter>
87         <tonode>b1.default_n2</tonode> <toport>p1</toport>
88         <value><double>67</double> </value>
89     </parameter>
90
91 </proc>