The Gaudi Framework  master (594c33fa)
GaudiConfig.ControlFlow.InvertNode Class Reference
Inheritance diagram for GaudiConfig.ControlFlow.InvertNode:
Collaboration diagram for GaudiConfig.ControlFlow.InvertNode:

Public Member Functions

def __init__ (self, item)
 
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

 item
 

Private Member Functions

def _visitSubNodes (self, visitor)
 

Detailed Description

Invert logic (negation) of a control flow node.

Definition at line 159 of file ControlFlow.py.

Constructor & Destructor Documentation

◆ __init__()

def GaudiConfig.ControlFlow.InvertNode.__init__ (   self,
  item 
)

Definition at line 164 of file ControlFlow.py.

164  def __init__(self, item):
165  self.item = item
166 

Member Function Documentation

◆ __repr__()

def GaudiConfig.ControlFlow.InvertNode.__repr__ (   self)

Definition at line 167 of file ControlFlow.py.

167  def __repr__(self):
168  return "~%r" % self.item
169 

◆ _visitSubNodes()

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

Reimplemented from GaudiConfig.ControlFlow.ControlFlowNode.

Definition at line 170 of file ControlFlow.py.

170  def _visitSubNodes(self, visitor):
171  self.item.visitNode(visitor)
172 
173 

Member Data Documentation

◆ item

GaudiConfig.ControlFlow.InvertNode.item

Definition at line 165 of file ControlFlow.py.


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