Salome HOME
Copyrights update 2015.
[samples/datafiles.git] / Yacs / Schemas / switch8.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 while loop in a switch (case 3)
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     <switch name="b1">
40       <case id="1">
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       <case id="-3">
48         <while name="b" >
49           <inline name="n2" >
50               <script>
51                   <code>print p1</code>
52                   <code>p1=p1+20</code>
53                   <code><![CDATA[condition=p1 < 90.]]> </code>
54               </script>
55             <inport name="p1" type="double"/>
56             <outport name="p1" type="double"/>
57             <outport name="condition" type="bool"/>
58           </inline>
59     <datalink> <fromnode>n2</fromnode><fromport>p1</fromport>
60                <tonode>n2</tonode> <toport>p1</toport> </datalink>
61     <datalink> <fromnode>n2</fromnode><fromport>condition</fromport>
62                <tonode>b1.m3_b</tonode> <toport>condition</toport> </datalink>
63         </while>
64       </case>
65       <default>
66         <inline name="n2" >
67           <script><code>print p1</code></script>
68           <inport name="p1" type="double"/>
69           <outport name="p1" type="double"/>
70         </inline>
71       </default>
72     </switch>
73     <!--control links -->
74     <!--data links -->
75     <datalink> <fromnode>n</fromnode><fromport>select</fromport>
76                <tonode>b1</tonode> <toport>select</toport> </datalink>
77     <datalink> <fromnode>b1.p1_n2</fromnode><fromport>p1</fromport>
78                <tonode>n2</tonode> <toport>p1</toport> </datalink>
79     <datalink> <fromnode>b1.m3_b.n2</fromnode><fromport>p1</fromport>
80                <tonode>n2</tonode> <toport>p1</toport> </datalink>
81     <datalink> <fromnode>b1.default_n2</fromnode><fromport>p1</fromport>
82                <tonode>n2</tonode> <toport>p1</toport> </datalink>
83     <!--parameters -->
84     <parameter>
85         <tonode>b1.p1_n2</tonode> <toport>p1</toport>
86         <value><double>23</double> </value>
87     </parameter>
88     <parameter>
89         <tonode>b1.m3_b.n2</tonode> <toport>p1</toport>
90         <value><double>54</double> </value>
91     </parameter>
92     <parameter>
93         <tonode>b1.default_n2</tonode> <toport>p1</toport>
94         <value><double>67</double> </value>
95     </parameter>
96
97 </proc>