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