Simple algorithm which implicitely book&fill three histograms
Definition at line 34 of file HistoEx.py.
◆ __init__()
def HistoEx.HistoEx.__init__ |
( |
|
self, |
|
|
|
name |
|
) |
| |
Constructor
Definition at line 37 of file HistoEx.py.
37 def __init__(self, name):
39 HistoAlgo.__init__(self, name)
◆ execute()
def HistoEx.HistoEx.execute |
( |
|
self | ) |
|
The major method 'execute', it is invoked for each event
Definition at line 41 of file HistoEx.py.
42 """The major method 'execute', it is invoked for each event"""
43 for i
in range(0, 10):
44 self.plot1D(i,
" 1D histo ", 0, 20, 20)
45 for j
in range(0, 10):
46 self.plot2D(i, j,
" 2D histo ", 0, 20, 0, 20, 20, 20)
47 for k
in range(0, 10):
48 self.plot3D(i, j, k,
" 3D histo ", 0, 20, 0, 20, 0, 20, 20, 20, 20)
The documentation for this class was generated from the following file: