Abstract postprocessor class, do not instantiate directly
Bases: object
Abstract postprocessor class, do not instantiate directly. but instantiate the PostprocessorFactory class which will take care of setting up many prostprocessors. Alternatively you can as well instantiate directly a sub class of AbstractPostprocessor.
Each subclass has to overload the process method and call its parent like this: AbstractPostprocessor.process(self) if a postprocessor needs parmeters, then it should override the setup and clear methods as well and call respectively AbstractPostprocessor.setup(self) and AbstractPostprocessor.clear(self).
for implementation examples see AgePostprocessor which uses mandatory and optional parameters
Abstract method to be called from the concrete implementation with AbstractPostprocessor.process(self) it takes care of results being cleared
Abstract method to be called from the concrete implementation with AbstractPostprocessor.process(self) it takes care of results being initialized