Salome HOME
First draft of SAMPLES maintenance - Cotech 112.2
[samples/datafiles.git] / Yacs / Schemas / foreach6.xml
diff --git a/Yacs/Schemas/foreach6.xml b/Yacs/Schemas/foreach6.xml
deleted file mode 100644 (file)
index 3a57e60..0000000
+++ /dev/null
@@ -1,89 +0,0 @@
-<!--
-  Copyright (C) 2006-2019  CEA/DEN, EDF R&D
-
-  This library is free software; you can redistribute it and/or
-  modify it under the terms of the GNU Lesser General Public
-  License as published by the Free Software Foundation; either
-  version 2.1 of the License, or (at your option) any later version.
-
-  This library is distributed in the hope that it will be useful,
-  but WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-  Lesser General Public License for more details.
-
-  You should have received a copy of the GNU Lesser General Public
-  License along with this library; if not, write to the Free Software
-  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
-
-  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
-
--->
-<proc>
-    <!-- a double for each loop with 3 branches with a service node corba -->
-    <!--types -->
-    <sequence name="intvec" content="int"/>
-    <sequence name="intvecvec" content="intvec"/>
-
-    <!--nodes -->
-    <inline name="node0" >
-      <script>
-        <code>p1=[i for i in range(10)]</code>
-        <code>p1=[p1,p1,p1]</code>
-      </script>
-      <outport name="p1" type="intvecvec"/>
-    </inline>
-
-    <foreach name="b1" nbranch="3" type="intvec" >
-    <foreach name="b2" nbranch="3" type="int" >
-      <service name="node2" >
-        <ref>corbaname:rir:#test.my_context/Echo.Object</ref>
-        <method>echoLong</method>
-        <inport name="p1" type="int"/>
-        <outport name="p1" type="int"/>
-      </service>
-    </foreach>
-    </foreach>
-
-    <inline name="node1" >
-      <script>
-        <code>print(p1)</code>
-      </script>
-      <inport name="p1" type="intvecvec"/>
-      <outport name="p1" type="intvecvec"/>
-    </inline>
-    <inline name="node3" >
-      <script>
-        <code>print(p1)</code>
-      </script>
-      <inport name="p1" type="intvecvec"/>
-    </inline>
-
-    <!--control -->
-    <control> <fromnode>node0</fromnode> <tonode>b1</tonode> </control>
-    <control> <fromnode>b1</fromnode> <tonode>node1</tonode> </control>
-
-    <!--datalink -->
-    <datalink>
-      <fromnode>node0</fromnode><fromport>p1</fromport>
-      <tonode>b1</tonode> <toport>SmplsCollection</toport>
-    </datalink>
-    <datalink>
-      <fromnode>b1</fromnode><fromport>SmplPrt</fromport>
-      <tonode>b1.b2</tonode> <toport>SmplsCollection</toport>
-    </datalink>
-    <datalink>
-      <fromnode>b1.b2</fromnode><fromport>SmplPrt</fromport>
-      <tonode>b1.b2.node2</tonode> <toport>p1</toport>
-    </datalink>
-    <datalink>
-      <fromnode>b1.b2.node2</fromnode><fromport>p1</fromport>
-      <tonode>node1</tonode> <toport>p1</toport>
-    </datalink>
-    <datalink>
-      <fromnode>node1</fromnode><fromport>p1</fromport>
-      <tonode>node3</tonode> <toport>p1</toport>
-    </datalink>
-
-    <!--parameters -->
-
-</proc>