The Gaudi Framework  v37r0 (b608885e)
GaudiConfig.ControlFlow.OrderedNode Class Reference
Inheritance diagram for GaudiConfig.ControlFlow.OrderedNode:
Collaboration diagram for GaudiConfig.ControlFlow.OrderedNode:

Public Member Functions

def __init__ (self, lhs, rhs)
 
def __repr__ (self)
 
- Public Member Functions inherited from GaudiConfig.ControlFlow.ControlFlowNode
def __and__ (self, rhs)
 
def __or__ (self, rhs)
 
def __invert__ (self)
 
def __rshift__ (self, rhs)
 
def visitNode (self, visitor)
 
def __eq__ (self, other)
 
def __hash__ (self)
 
def getFullName (self)
 

Public Attributes

 lhs
 
 rhs
 

Private Member Functions

def _visitSubNodes (self, visitor)
 

Detailed Description

Represent order of execution of nodes.

Definition at line 109 of file ControlFlow.py.

Constructor & Destructor Documentation

◆ __init__()

def GaudiConfig.ControlFlow.OrderedNode.__init__ (   self,
  lhs,
  rhs 
)

Definition at line 114 of file ControlFlow.py.

114  def __init__(self, lhs, rhs):
115  self.lhs = lhs
116  self.rhs = rhs
117 

Member Function Documentation

◆ __repr__()

def GaudiConfig.ControlFlow.OrderedNode.__repr__ (   self)

Definition at line 118 of file ControlFlow.py.

118  def __repr__(self):
119  return "(%r >> %r)" % (self.lhs, self.rhs)
120 

◆ _visitSubNodes()

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

Reimplemented from GaudiConfig.ControlFlow.ControlFlowNode.

Definition at line 121 of file ControlFlow.py.

121  def _visitSubNodes(self, visitor):
122  self.lhs.visitNode(visitor)
123  self.rhs.visitNode(visitor)
124 
125 

Member Data Documentation

◆ lhs

GaudiConfig.ControlFlow.OrderedNode.lhs

Definition at line 115 of file ControlFlow.py.

◆ rhs

GaudiConfig.ControlFlow.OrderedNode.rhs

Definition at line 116 of file ControlFlow.py.


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