Source code for pypint.plugins.analyzers.i_analyzer

# coding=utf-8
"""

.. moduleauthor:: Torbjörn Klatt <[email protected]>
"""


[docs]class IAnalyzer(object): """Basic interface for analyzers. """ def __init__(self, *args, **kwargs): self._data = None self._plotter = None
[docs] def run(self, **kwargs): """Runs the full analyzation procedure of this analyzer. """ pass
[docs] def add_data(self, *args, **kwargs): """Adds a dataset to the analyzer. """ pass