Salome HOME
1f989ab9cf371e9b6c6406693356804045d76fcb
[samples/datafiles.git] / Superv / Python / GraphSub.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 GraphSub
23 #
24 from SuperV import *
25
26 # Graph creation of GraphSub
27 def DefGraphSub() :
28     GraphSub = Graph( 'GraphSub' )
29     GraphSub.SetName( 'GraphSub' )
30     GraphSub.SetAuthor( '' )
31     GraphSub.SetComment( '' )
32     GraphSub.Coords( 0 , 0 )
33     
34     # Creation of Factory Nodes
35     
36     Sub = GraphSub.FNode( 'SubComponent' , 'SubComponent' , 'Sub' )
37     Sub.SetName( 'Sub' )
38     Sub.SetAuthor( '' )
39     Sub.SetContainer( 'localhost/FactoryServer' )
40     Sub.SetComment( 'Sub from SubComponent' )
41     Sub.Coords( 55 , 71 )
42     ISubx = Sub.GetInPort( 'x' )
43     ISuby = Sub.GetInPort( 'y' )
44     ISubGate = Sub.GetInPort( 'Gate' )
45     OSubz = Sub.GetOutPort( 'z' )
46     OSubGate = Sub.GetOutPort( 'Gate' )
47     
48     # Input Ports of the graph
49     #ISubx = Sub.GetInPort( 'x' )
50     #ISuby = Sub.GetInPort( 'y' )
51     
52     # Output Ports of the graph
53     #OSubz = Sub.GetOutPort( 'z' )
54     return GraphSub
55
56
57 GraphSub = DefGraphSub()