Belle II Software development
QueueHarvester Class Reference
Inheritance diagram for QueueHarvester:
HarvestingModule

Public Member Functions

def __init__ (self, queue, foreach, output_file_name, name=None, title=None, contact=None, expert_level=None)
 

Detailed Description

 Wrapper for the HarvestingModule to write its output file name to the queue 

Definition at line 75 of file wrapper.py.

Constructor & Destructor Documentation

◆ __init__()

def __init__ (   self,
  queue,
  foreach,
  output_file_name,
  name = None,
  title = None,
  contact = None,
  expert_level = None 
)
 The same as the base class except for the queue argument 

Reimplemented from HarvestingModule.

Definition at line 79 of file wrapper.py.

79 def __init__(self, queue, foreach, output_file_name, name=None, title=None, contact=None, expert_level=None):
80 """ The same as the base class except for the queue argument """
81 queue.put(self.__class__.__name__ + "_output_file_name", output_file_name)
82 HarvestingModule.__init__(self, foreach=foreach,
83 output_file_name=output_file_name,
84 name=name, title=title, contact=contact,
85 expert_level=expert_level)

The documentation for this class was generated from the following file: