The Gaudi Framework  v38r1p1 (ae26267b)
GaudiConfig.ControlFlow.line Class Reference
Inheritance diagram for GaudiConfig.ControlFlow.line:
Collaboration diagram for GaudiConfig.ControlFlow.line:

Public Member Functions

def __init__ (self, name, item)
 
def __repr__ (self)
 

Public Attributes

 name
 
 item
 

Private Member Functions

def _visitSubNodes (self, visitor)
 

Detailed Description

Definition at line 211 of file ControlFlow.py.

Constructor & Destructor Documentation

◆ __init__()

def GaudiConfig.ControlFlow.line.__init__ (   self,
  name,
  item 
)

Definition at line 212 of file ControlFlow.py.

212  def __init__(self, name, item):
213  self.name = name
214  self.item = item
215 

Member Function Documentation

◆ __repr__()

def GaudiConfig.ControlFlow.line.__repr__ (   self)

Definition at line 216 of file ControlFlow.py.

216  def __repr__(self):
217  return "line(%r, %r)" % (self.name, self.item)
218 

◆ _visitSubNodes()

def GaudiConfig.ControlFlow.line._visitSubNodes (   self,
  visitor 
)
private

Definition at line 219 of file ControlFlow.py.

219  def _visitSubNodes(self, visitor):
220  self.item.visitNode(visitor)
221 
222 

Member Data Documentation

◆ item

GaudiConfig.ControlFlow.line.item

Definition at line 214 of file ControlFlow.py.

◆ name

GaudiConfig.ControlFlow.line.name

Definition at line 213 of file ControlFlow.py.


The documentation for this class was generated from the following file:
GaudiAlg.HistoUtils.__repr__
__repr__
Definition: HistoUtils.py:535