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