Package topo :: Package outputfns :: Module basic :: Class Pipeline
[hide private]
[frames] | no frames]

Class Pipeline

source code

                                  object --+        
                                           |        
base.parameterizedobject.ParameterizedObject --+    
                                               |    
                  base.functionfamilies.OutputFn --+
                                                   |
                                                  Pipeline

Applies a list of other OutputFns in order, to combine their effects.

Nested Classes [hide private]

Inherited from base.parameterizedobject.ParameterizedObject: __metaclass__

Instance Methods [hide private]
 
__call__(self, x) source code

Inherited from base.parameterizedobject.ParameterizedObject: __getstate__, __init__, __repr__, __setstate__, __str__, debug, defaults, get_param_values, inspect_value, message, params, print_param_values, script_repr, verbose, warning

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__

Class Variables [hide private]
  output_fns = <topo.base.parameterclasses.ListParameter object ...
List of OutputFns to apply, in order.

Inherited from base.functionfamilies.OutputFn: norm_value

Inherited from base.parameterizedobject.ParameterizedObject: name, print_level

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__call__(self, x)
(Call operator)

source code 
Overrides: base.functionfamilies.OutputFn.__call__

Class Variable Details [hide private]

output_fns

List of OutputFns to apply, in order. The default is an empty list, which should be overridden for any useful work.
Value:
ListParameter(default= [], class_= OutputFn, doc= """
        List of OutputFns to apply, in order.  The default is an empty list, 
        which should be overridden for any useful work.""")