factory#

class PostProcessorFactory[source]#

Bases: object

The Factory Class

static create_postprocessor(method)[source]#

Create the relevant post processor from given method.

Parameters:

method (MethodType) – The type of method for post-processing.

Raises:

AssertionError – Invalid method type is provided.

Returns:

A post processor object depending on the given method.

Return type:

PostProcessor