Salome HOME
Add test files for SHAPER module.
[samples/datafiles.git] / Yacs / Schemas / err3.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   <!--Schema for testing errors : consistency errors -->
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         <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       </case>
54       <default>
55         <inline name="n2" >
56           <script><code>print p1</code></script>
57           <inport name="p1" type="double"/>
58           <outport name="p1" type="double"/>
59         </inline>
60       </default>
61     </switch>
62     <!--control links -->
63     <control> <fromnode>n</fromnode> <tonode>b1</tonode> </control>
64     <control> <fromnode>b1</fromnode> <tonode>n2</tonode> </control>
65     <!--data links -->
66     <datalink> <fromnode>n</fromnode><fromport>select</fromport>
67                <tonode>b1</tonode> <toport>select</toport> </datalink>
68     <datalink> <fromnode>b1.p1_n2</fromnode><fromport>p1</fromport>
69                <tonode>n2</tonode> <toport>p1</toport> </datalink>
70     <datalink> <fromnode>b1.default_n2</fromnode><fromport>p1</fromport>
71                <tonode>n2</tonode> <toport>p1</toport> </datalink>
72     <!--parameters -->
73     <parameter>
74         <tonode>b1.p1_n2</tonode> <toport>p1</toport>
75         <value><double>23</double> </value>
76     </parameter>
77     <parameter>
78         <tonode>b1.p3_n2</tonode> <toport>p1</toport>
79         <value><double>54</double> </value>
80     </parameter>
81     <parameter>
82         <tonode>b1.default_n2</tonode> <toport>p1</toport>
83         <value><double>67</double> </value>
84     </parameter>
85
86 </proc>