Salome HOME
Update copyrights 2014.
[samples/datafiles.git] / Yacs / Schemas / switch1.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 selected by initialization)
23     -->
24     <!--types -->
25     <!--nodes -->
26     <switch name="b1" select="3" >
27       <case id="1">
28         <inline name="n2" >
29           <script><code>print p1</code></script>
30           <inport name="p1" type="double"/>
31           <outport name="p1" type="double"/>
32         </inline>
33       </case>
34       <case id="3">
35         <inline name="n2" >
36           <script><code>print p1</code></script>
37           <inport name="p1" type="double"/>
38           <outport name="p1" type="double"/>
39         </inline>
40       </case>
41       <default>
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       </default>
48     </switch>
49
50     <!--parameters -->
51     <parameter>
52         <tonode>b1.p1_n2</tonode> <toport>p1</toport>
53         <value><double>23</double> </value>
54     </parameter>
55     <parameter>
56         <tonode>b1.p3_n2</tonode> <toport>p1</toport>
57         <value><double>54</double> </value>
58     </parameter>
59     <parameter>
60         <tonode>b1.default_n2</tonode> <toport>p1</toport>
61         <value><double>54</double> </value>
62     </parameter>
63
64 </proc>