Salome HOME
Fix for improvement IPAL9815 : Remove "Add Port" functionality as duplicate of "Edit...
[modules/superv.git] / examples / GraphSIGSEGV.py
1
2 # Generated python file of Graph GraphSIGSEGV
3
4 from SuperV import *
5
6 # Graph creation of GraphSIGSEGV
7 def DefGraphSIGSEGV() :
8     GraphSIGSEGV = Graph( 'GraphSIGSEGV' )
9     GraphSIGSEGV.SetName( 'GraphSIGSEGV' )
10     GraphSIGSEGV.SetAuthor( 'JR' )
11     GraphSIGSEGV.SetComment( '' )
12     GraphSIGSEGV.Coords( 0 , 0 )
13     
14     # Creation of Factory Nodes
15     
16     SIGSEGVfunc = GraphSIGSEGV.FNode( 'SIGNALSComponent' , 'SIGNALSComponent' , 'SIGSEGVfunc' )
17     SIGSEGVfunc.SetName( 'SIGSEGVfunc' )
18     SIGSEGVfunc.SetAuthor( '' )
19     SIGSEGVfunc.SetContainer( 'localhost/FactoryServer' )
20     SIGSEGVfunc.SetComment( 'SIGSEGVfunc from SIGNALSComponent' )
21     SIGSEGVfunc.Coords( 152 , 197 )
22     ISIGSEGVfuncGate = SIGSEGVfunc.GetInPort( 'Gate' )
23     OSIGSEGVfuncreturn = SIGSEGVfunc.GetOutPort( 'return' )
24     OSIGSEGVfuncGate = SIGSEGVfunc.GetOutPort( 'Gate' )
25     
26     # Output Ports of the graph
27     #OSIGSEGVfuncreturn = SIGSEGVfunc.GetOutPort( 'return' )
28     return GraphSIGSEGV
29
30
31 GraphSIGSEGV = DefGraphSIGSEGV()