Salome HOME
Update copyrights 2014.
[samples/datafiles.git] / Superv / Python / GraphRunSyr.py
1 # Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 # This library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Lesser General Public
8 # License as published by the Free Software Foundation; either
9 # version 2.1 of the License, or (at your option) any later version.
10 #
11 # This library is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # Lesser General Public License for more details.
15 #
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with this library; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 #  File   : GraphRunSyr.py
23 #  Module : SuperVisionTest
24 #
25 from SuperV import *
26
27 # Warning this script has an IOR (object reference) as Input :
28 # You may have to redefine it with the result of :
29 #         SyrStruct.ComponentRef( 'FactoryServer' , 'SyrComponent' )
30 # See the Input Port forN.InPort( 'SyrComponent' , 'ComponentRef' )
31
32 #SyrStruct = Graph('../share/salome/resources/SyrStruct.xml')
33 SyrStruct = Graph('/home/data/jr_HEAD/build/share/salome/resources/SyrStruct.xml')
34
35 exec SyrStruct.ListNodes()
36
37 forN.Input('min',5)
38 forN.Input('max',8)
39
40 SyrStruct.Start()
41
42 endforN.State()
43
44 SyrStruct.State()
45
46 endforN.Suspend()
47
48 forN.State()
49
50 N = forN.Port( 'N' )
51 EndN = endwhileNotOne.Port( 'N' )
52 K = endforN.Port( 'K' )
53
54 forN.Resume()
55
56 while SyrStruct.IsDone() == 0 :
57     endforN.SuspendedW()
58     if SyrStruct.IsDone() == 0 :
59         print N.ToString(),'-->',EndN.ToString(),'with',K.ToString(),'steps'
60         endforN.Resume()
61
62 SyrStruct.State()
63
64 SyrStruct.PrintPorts()