The Gaudi Framework  master (37c0b60a)
ControlFlow.OrderedNode Class Reference
Inheritance diagram for ControlFlow.OrderedNode:
Collaboration diagram for ControlFlow.OrderedNode:

Public Member Functions

def __init__ (self, lhs, rhs)
 
def __repr__ (self)
 
- Public Member Functions inherited from 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 108 of file ControlFlow.py.

Constructor & Destructor Documentation

◆ __init__()

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

Definition at line 113 of file ControlFlow.py.

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

Member Function Documentation

◆ __repr__()

def ControlFlow.OrderedNode.__repr__ (   self)

Definition at line 117 of file ControlFlow.py.

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

◆ _visitSubNodes()

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

Reimplemented from ControlFlow.ControlFlowNode.

Definition at line 120 of file ControlFlow.py.

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

Member Data Documentation

◆ lhs

ControlFlow.OrderedNode.lhs

Definition at line 114 of file ControlFlow.py.

◆ rhs

ControlFlow.OrderedNode.rhs

Definition at line 115 of file ControlFlow.py.


The documentation for this class was generated from the following file:
GaudiPartProp.decorators.__repr__
__repr__
decorate the vector of properties
Definition: decorators.py:173