multiplier_cluster

Configuration

Variable

Default

Tunable

Description

factor

(no default value)

NO

The value to start counting at.

Input Ports

Port name

Data Type

Flags

Description

factor

integer

_required

The factor to multiply.

Output Ports

Port name

Data Type

Flags

Description

product

integer

_required

Where the product will be available.

Pipefile Usage

The following sections describe the blocks needed to use this process in a pipe file.

Pipefile block

# ================================================================
process <this-proc>
  :: multiplier_cluster
# The value to start counting at.
  factor = <value>
# ================================================================

Process connections

The following Input ports will need to be set

# This process will consume the following input ports
connect from <this-proc>.factor
         to   <upstream-proc>.factor

The following Output ports will need to be set

# This process will produce the following output ports
connect from <this-proc>.product
         to   <downstream-proc>.product

Class Description

class multiplier_cluster : public sprokit::process_cluster

A multiplier cluster.

\process A multiplier cluster.

Public Functions

multiplier_cluster(kwiver::vital::config_block_sptr const &config)

Constructor.

Parameters:

config – The configuration for the process.

virtual ~multiplier_cluster()

Destructor.

class priv