The Gaudi Framework  v36r11 (bdb84f5f)
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 212 of file ControlFlow.py.

Constructor & Destructor Documentation

◆ __init__()

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

Definition at line 213 of file ControlFlow.py.

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

Member Function Documentation

◆ __repr__()

def GaudiConfig.ControlFlow.line.__repr__ (   self)

Definition at line 217 of file ControlFlow.py.

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

◆ _visitSubNodes()

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

Definition at line 220 of file ControlFlow.py.

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

Member Data Documentation

◆ item

GaudiConfig.ControlFlow.line.item

Definition at line 215 of file ControlFlow.py.

◆ name

GaudiConfig.ControlFlow.line.name

Definition at line 214 of file ControlFlow.py.


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