Simple algorithm which implicitely book&fill N-Tuples
Definition at line 49 of file TupleEx.py.
◆ __init__()
def TupleEx.TupleEx.__init__ |
( |
|
self, |
|
|
|
name = 'TupleEx' , |
|
|
** |
args |
|
) |
| |
Constructor
Definition at line 56 of file TupleEx.py.
56 def __init__(self, name='TupleEx', **args):
58 TupleAlgo.__init__(self, name, **args)
◆ execute()
def TupleEx.TupleEx.execute |
( |
|
self | ) |
|
The major method 'execute', it is invoked for each event
Definition at line 61 of file TupleEx.py.
63 The major method 'execute', it is invoked for each event
68 tup = self.nTuple(
'My trivial N-tuple')
69 for i
in range(0, 100):
70 tup.column(
'a', math.sin(i))
71 tup.column(
'b', math.cos(i))
72 tup.column(
'c', math.tan(i))
73 tup.column(
'g',
gauss())
The documentation for this class was generated from the following file: