The Gaudi Framework  v36r1 (3e2fb5a8)
HistoEx.HistoEx Class Reference
Inheritance diagram for HistoEx.HistoEx:
Collaboration diagram for HistoEx.HistoEx:

Public Member Functions

def __init__ (self, name)
 
def execute (self)
 

Detailed Description

Simple algorithm which implicitely book&fill three histograms 

Definition at line 33 of file HistoEx.py.

Constructor & Destructor Documentation

◆ __init__()

def HistoEx.HistoEx.__init__ (   self,
  name 
)
Constructor 

Definition at line 36 of file HistoEx.py.

36  def __init__(self, name):
37  """ Constructor """
38  HistoAlgo.__init__(self, name)
39 

Member Function Documentation

◆ execute()

def HistoEx.HistoEx.execute (   self)
The major method 'execute', it is invoked for each event 

Definition at line 40 of file HistoEx.py.

40  def execute(self):
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,
48  20, 20)
49 
50  return SUCCESS
51 
52 
53 # =============================================================================
54 # job configuration
55 # =============================================================================

The documentation for this class was generated from the following file:
GaudiPython.Pythonizations.execute
execute
Definition: Pythonizations.py:566
Gaudi::Functional::details::zip::range
decltype(auto) range(Args &&... args)
Zips multiple containers together to form a single range.
Definition: FunctionalDetails.h:97