Salome HOME
Merge from V6_main_20120808 08Aug12
[samples/datafiles.git] / Superv / Python / GraphNotClosedChainInsideSwitch.py
1 #  Copyright (C) 2007-2011  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.
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 # Generated python file of Graph GraphSwitch
23 #
24 from SuperV import *
25
26 # Graph creation of GraphSwitch
27 def DefGraphSwitch() :
28     GraphSwitch = Graph( 'GraphSwitch' )
29     GraphSwitch.SetName( 'GraphSwitch' )
30     GraphSwitch.SetAuthor( '' )
31     GraphSwitch.SetComment( '' )
32     GraphSwitch.Coords( 0 , 0 )
33     
34     # Creation of Factory Nodes
35     
36     # Creation of InLine Nodes
37     PyIsOdd = []
38     PyIsOdd.append( 'from time import *   ' )
39     PyIsOdd.append( 'def IsOdd(a) :       ' )
40     PyIsOdd.append( '    print a,"IsOdd (GraphSwitch)"      ' )
41     PyIsOdd.append( '    sleep( 1 )   ' )
42     PyIsOdd.append( '    return a     ' )
43     IsOdd = GraphSwitch.INode( 'IsOdd' , PyIsOdd )
44     IsOdd.SetName( 'IsOdd' )
45     IsOdd.SetAuthor( '' )
46     IsOdd.SetComment( 'Python function' )
47     IsOdd.Coords( 389 , 65 )
48     IIsOdda = IsOdd.InPort( 'a' , 'long' )
49     IIsOddGate = IsOdd.GetInPort( 'Gate' )
50     OIsOdda = IsOdd.OutPort( 'a' , 'long' )
51     OIsOddGate = IsOdd.GetOutPort( 'Gate' )
52     
53     # Creation of Loop Nodes
54     PyInitLoopSwitch = []
55     PyInitLoopSwitch.append( 'def InitLoop(Index,Min,Max) :      ' )
56     PyInitLoopSwitch.append( '  return Index,Min,Max     ' )
57     PyMoreInitLoopSwitch = []
58     PyMoreInitLoopSwitch.append( 'def MoreLoop(Index,Min,Max) :     ' )
59     PyMoreInitLoopSwitch.append( '      if Index <= Max :   ' )
60     PyMoreInitLoopSwitch.append( '              DoLoop = 1     ' )
61     PyMoreInitLoopSwitch.append( '      else :     ' )
62     PyMoreInitLoopSwitch.append( '              DoLoop = 0     ' )
63     PyMoreInitLoopSwitch.append( '      return DoLoop,Index,Min,Max     ' )
64     PyNextInitLoopSwitch = []
65     PyNextInitLoopSwitch.append( 'def NextLoop(Index,Min,Max) :     ' )
66     PyNextInitLoopSwitch.append( '      Index = Index + 1     ' )
67     PyNextInitLoopSwitch.append( '      return Index,Min,Max     ' )
68     InitLoopSwitch,EndOfInitLoopSwitch = GraphSwitch.LNode( 'InitLoop' , PyInitLoopSwitch , 'MoreLoop' , PyMoreInitLoopSwitch , 'NextLoop' , PyNextInitLoopSwitch )
69     EndOfInitLoopSwitch.SetName( 'EndOfInitLoopSwitch' )
70     EndOfInitLoopSwitch.SetAuthor( '' )
71     EndOfInitLoopSwitch.SetComment( 'Compute Node' )
72     EndOfInitLoopSwitch.Coords( 776 , 170 )
73     PyEndOfInitLoopSwitch = []
74     EndOfInitLoopSwitch.SetPyFunction( '' , PyEndOfInitLoopSwitch )
75     IInitLoopSwitchDoLoop = InitLoopSwitch.GetInPort( 'DoLoop' )
76     IInitLoopSwitchIndex = InitLoopSwitch.InPort( 'Index' , 'long' )
77     IInitLoopSwitchMin = InitLoopSwitch.InPort( 'Min' , 'long' )
78     IInitLoopSwitchMax = InitLoopSwitch.InPort( 'Max' , 'long' )
79     IInitLoopSwitchGate = InitLoopSwitch.GetInPort( 'Gate' )
80     OInitLoopSwitchDoLoop = InitLoopSwitch.GetOutPort( 'DoLoop' )
81     OInitLoopSwitchIndex = InitLoopSwitch.GetOutPort( 'Index' )
82     OInitLoopSwitchMin = InitLoopSwitch.GetOutPort( 'Min' )
83     OInitLoopSwitchMax = InitLoopSwitch.GetOutPort( 'Max' )
84     OInitLoopSwitchGate = InitLoopSwitch.GetOutPort( 'Gate' )
85     IEndOfInitLoopSwitchDoLoop = EndOfInitLoopSwitch.GetInPort( 'DoLoop' )
86     IEndOfInitLoopSwitchIndex = EndOfInitLoopSwitch.GetInPort( 'Index' )
87     IEndOfInitLoopSwitchMin = EndOfInitLoopSwitch.GetInPort( 'Min' )
88     IEndOfInitLoopSwitchMax = EndOfInitLoopSwitch.GetInPort( 'Max' )
89     IEndOfInitLoopSwitchGate = EndOfInitLoopSwitch.GetInPort( 'Gate' )
90     OEndOfInitLoopSwitchDoLoop = EndOfInitLoopSwitch.GetOutPort( 'DoLoop' )
91     OEndOfInitLoopSwitchIndex = EndOfInitLoopSwitch.GetOutPort( 'Index' )
92     OEndOfInitLoopSwitchMin = EndOfInitLoopSwitch.GetOutPort( 'Min' )
93     OEndOfInitLoopSwitchMax = EndOfInitLoopSwitch.GetOutPort( 'Max' )
94     OEndOfInitLoopSwitchGate = EndOfInitLoopSwitch.GetOutPort( 'Gate' )
95     InitLoopSwitch.SetName( 'InitLoopSwitch' )
96     InitLoopSwitch.SetAuthor( '' )
97     InitLoopSwitch.SetComment( 'Compute Node' )
98     InitLoopSwitch.Coords( 10 , 129 )
99     
100     # Creation of Switch Nodes
101     PySwitch = []
102     PySwitch.append( 'from time import * ' )
103     PySwitch.append( 'def Switch(a) :   ' )
104     PySwitch.append( '    if ( a & 1 ) == 0 : ' )
105     PySwitch.append( '        sleep(1)    ' )
106     PySwitch.append( '    return a & 1,1-(a&1),a    ' )
107     Switch,EndOfSwitch = GraphSwitch.SNode( 'Switch' , PySwitch )
108     EndOfSwitch.SetName( 'EndOfSwitch' )
109     EndOfSwitch.SetAuthor( '' )
110     EndOfSwitch.SetComment( 'Compute Node' )
111     EndOfSwitch.Coords( 582 , 170 )
112     PyEndOfSwitch = []
113     EndOfSwitch.SetPyFunction( '' , PyEndOfSwitch )
114     IEndOfSwitcha = EndOfSwitch.InPort( 'a' , 'long' )
115     IEndOfSwitchDefault = EndOfSwitch.GetInPort( 'Default' )
116     OEndOfSwitcha = EndOfSwitch.OutPort( 'a' , 'long' )
117     OEndOfSwitchGate = EndOfSwitch.GetOutPort( 'Gate' )
118     Switch.SetName( 'Switch' )
119     Switch.SetAuthor( '' )
120     Switch.SetComment( 'Compute Node' )
121     Switch.Coords( 194 , 129 )
122     ISwitcha = Switch.InPort( 'a' , 'long' )
123     ISwitchGate = Switch.GetInPort( 'Gate' )
124     OSwitchOdd = Switch.OutPort( 'Odd' , 'long' )
125     OSwitchEven = Switch.OutPort( 'Even' , 'int' )
126     OSwitcha = Switch.OutPort( 'a' , 'int' )
127     OSwitchDefault = Switch.GetOutPort( 'Default' )
128     
129     # Creation of Links
130     LInitLoopSwitchIndexSwitcha = GraphSwitch.Link( OInitLoopSwitchIndex , ISwitcha )
131     
132     LInitLoopSwitchMinEndOfInitLoopSwitchMin = GraphSwitch.Link( OInitLoopSwitchMin , IEndOfInitLoopSwitchMin )
133     
134     LInitLoopSwitchMaxEndOfInitLoopSwitchMax = GraphSwitch.Link( OInitLoopSwitchMax , IEndOfInitLoopSwitchMax )
135     
136     LSwitchOddIsOddGate = GraphSwitch.Link( OSwitchOdd , IIsOddGate )
137     
138     LSwitchaIsOdda = GraphSwitch.Link( OSwitcha , IIsOdda )
139     LSwitchaIsOdda.AddCoord( 1 , 371 , 136 )
140     LSwitchaIsOdda.AddCoord( 2 , 371 , 200 )
141     
142     LSwitchDefaultEndOfSwitchDefault = GraphSwitch.Link( OSwitchDefault , IEndOfSwitchDefault )
143     
144     LEndOfSwitchaEndOfInitLoopSwitchIndex = GraphSwitch.Link( OEndOfSwitcha , IEndOfInitLoopSwitchIndex )
145     
146     # Input datas
147     IInitLoopSwitchIndex.Input( 0 )
148     IInitLoopSwitchMin.Input( 0 )
149     IInitLoopSwitchMax.Input( 35 )
150     
151     # Input Ports of the graph
152     #IEndOfSwitcha = EndOfSwitch.GetInPort( 'a' )
153     
154     # Output Ports of the graph
155     #OIsOdda = IsOdd.GetOutPort( 'a' )
156     #OEndOfInitLoopSwitchIndex = EndOfInitLoopSwitch.GetOutPort( 'Index' )
157     #OEndOfInitLoopSwitchMin = EndOfInitLoopSwitch.GetOutPort( 'Min' )
158     #OEndOfInitLoopSwitchMax = EndOfInitLoopSwitch.GetOutPort( 'Max' )
159     #OSwitchEven = Switch.GetOutPort( 'Even' )
160     return GraphSwitch
161
162
163 GraphSwitch = DefGraphSwitch()