The Gaudi Framework  v36r1 (3e2fb5a8)
GaudiConfig.ControlFlow.ignore Class Reference
Inheritance diagram for GaudiConfig.ControlFlow.ignore:
Collaboration diagram for GaudiConfig.ControlFlow.ignore:

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

Treat a control flow node as always successful, equivalent to (a | ~ a).

Definition at line 173 of file ControlFlow.py.

Constructor & Destructor Documentation

◆ __init__()

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

Definition at line 178 of file ControlFlow.py.

178  def __init__(self, item):
179  self.item = item
180 

Member Function Documentation

◆ __repr__()

def GaudiConfig.ControlFlow.ignore.__repr__ (   self)

Definition at line 181 of file ControlFlow.py.

181  def __repr__(self):
182  return "ignore(%r)" % self.item
183 

◆ _visitSubNodes()

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

Reimplemented from GaudiConfig.ControlFlow.ControlFlowNode.

Definition at line 184 of file ControlFlow.py.

184  def _visitSubNodes(self, visitor):
185  self.item.visitNode(visitor)
186 
187 

Member Data Documentation

◆ item

GaudiConfig.ControlFlow.ignore.item

Definition at line 179 of file ControlFlow.py.


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