Belle II Software  release-05-02-19
Statistics Class Reference
Inheritance diagram for Statistics:

Public Member Functions

def __init__ (self, columns, modules)
 

Public Attributes

 columns
 The list of StatisticsColumns.
 
 modules
 A list of dictionaries, each one with the same names as there are columns.
 

Detailed Description

Data class for the statistics.

Definition at line 66 of file entities.py.

Constructor & Destructor Documentation

◆ __init__()

def __init__ (   self,
  columns,
  modules 
)
Create a new Statistics object.

Parameters:
  columns: The list of StatisticsColumns.
  modules: A list of dictionaries, each one with the same names as there are columns.

Definition at line 71 of file entities.py.

71  def __init__(self, columns, modules):
72  """
73  Create a new Statistics object.
74 
75  Parameters:
76  columns: The list of StatisticsColumns.
77  modules: A list of dictionaries, each one with the same names as there are columns.
78  """
79 
80  self.columns = columns
81 
82  self.modules = modules

The documentation for this class was generated from the following file: