The Gaudi Framework  v36r7 (7f57a304)
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 34 of file HistoEx.py.

Constructor & Destructor Documentation

◆ __init__()

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

Definition at line 37 of file HistoEx.py.

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

Member Function Documentation

◆ execute()

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

Definition at line 41 of file HistoEx.py.

41  def execute(self):
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)
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:588
Gaudi::Functional::details::zip::range
decltype(auto) range(Args &&... args)
Zips multiple containers together to form a single range.
Definition: FunctionalDetails.h:102