Salome HOME
892aa0eccaf68cf509eb1a5f778544243a920359
[samples/datafiles.git] / Yacs / Schemas / forloop7.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 for loop (2 steps) in a for loop (3 steps) in a bloc -->
23     <!--types -->
24     <!--nodes -->
25     <inline name="n" >
26         <script>
27             <code>nstep=3</code>
28         </script>
29         <outport name="nstep" type="int"/>
30     </inline>
31     <bloc name="b">
32       <forloop name="b1" >
33             <forloop name="l" nsteps="2">
34               <inline name="node2" >
35                 <function name="f">
36                   <code>a=0</code>
37                   <code>def f(p1):</code>
38                   <code>  global a</code>
39                   <code>  p1= p1+10.</code>
40                   <code>  print(a)</code>
41                   <code>  a=a+p1</code>
42                   <code>  print(a)</code>
43                   <code>  return p1</code>
44                 </function>
45                 <inport name="p1" type="double"/>
46                 <outport name="p1" type="double"/>
47               </inline>
48             </forloop>
49       </forloop>
50     </bloc>
51     <!--control links -->
52     <control> <fromnode>n</fromnode> <tonode>b</tonode> </control>
53     <!--data links -->
54     <datalink> <fromnode>n</fromnode><fromport>nstep</fromport>
55                <tonode>b.b1</tonode> <toport>nsteps</toport> </datalink>
56     <!--parameters -->
57     <parameter>
58         <tonode>b.b1.l.node2</tonode> <toport>p1</toport>
59         <value><double>23</double> </value>
60     </parameter>
61
62 </proc>