]> SALOME platform Git repositories - modules/superv.git/blobdiff - examples/test_events.py
Salome HOME
This commit was generated by cvs2git to create branch 'Tag-First-
[modules/superv.git] / examples / test_events.py
diff --git a/examples/test_events.py b/examples/test_events.py
deleted file mode 100644 (file)
index fe394f4..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-
-# Generated python file of Graph aNewDataFlow
-
-from SuperV import *
-# Graph creation 
-aNewDataFlow = Graph( 'aNewDataFlow' )
-aNewDataFlow.SetName( 'aNewDataFlow' )
-aNewDataFlow.SetAuthor( '' )
-aNewDataFlow.SetComment( '' )
-aNewDataFlow.Coords( 0 , 0 )
-
-# Creation of Factory Nodes
-
-# Creation of InLine Nodes
-PyFunc = []
-PyFunc.append( 'def Func( A ):     ' )
-PyFunc.append( '  import batchmode_visu  ' )
-PyFunc.append( '  batchmode_visu.myVisu.CreateTestView()   ' )
-PyFunc.append( '  batchmode_visu.myVisu.ShowTestObject()   ' )
-PyFunc.append( '  return A     ' )
-Func = aNewDataFlow.INode( 'Func' , PyFunc )
-Func.SetName( 'Func' )
-Func.SetAuthor( '' )
-Func.SetComment( 'Compute Node' )
-Func.Coords( 375 , 162 )
-Func.InPort( 'A' , 'int' )
-Func.OutPort( 'B' , 'int' )
-
-# Creation of Loop Nodes
-PyInit = []
-PyInit.append( 'def Init( A ):   ' )
-PyInit.append( '  return A   ' )
-PyMoreInit = []
-PyMoreInit.append( 'def More( A ):   ' )
-PyMoreInit.append( '  if A < 10:   ' )
-PyMoreInit.append( '    return 1,A   ' )
-PyMoreInit.append( '  return 0,A   ' )
-PyNextInit = []
-PyNextInit.append( 'def Next( A ):   ' )
-PyNextInit.append( '  return (A + 1)   ' )
-Init,EndInit = aNewDataFlow.LNode( 'Init' , PyInit , 'More' , PyMoreInit , 'Next' , PyNextInit )
-EndInit.SetName( 'EndInit' )
-EndInit.SetAuthor( '' )
-EndInit.SetComment( '' )
-EndInit.Coords( 740 , 168 )
-PyEndInit = []
-EndInit.SetPyFunction( 'EndInit' , PyEndInit )
-Init.SetName( 'Init' )
-Init.SetAuthor( '' )
-Init.SetComment( '' )
-Init.Coords( 118 , 160 )
-Init.InPort( 'A' , 'int' )
-Init.OutPort( 'A' , 'int' )
-
-# Creation of Links
-InitA = Init.Port( 'A' )
-FuncA = aNewDataFlow.Link( InitA , Func.Port( 'A' ) )
-
-FuncB = Func.Port( 'B' )
-EndInitA = aNewDataFlow.Link( FuncB , EndInit.Port( 'A' ) )
-
-# Creation of Input datas
-InitA = Init.Input( 'A' , 0)
-
-# Creation of Output variables
-EndInitA = EndInit.Port( 'A' )