Package PyFoam :: Package LogAnalysis :: Module FileLineAnalyzer
[hide private]
[frames] | no frames]

Source Code for Module PyFoam.LogAnalysis.FileLineAnalyzer

 1  #  ICE Revision: $Id$ 
 2  """Line analyzer with output""" 
 3   
 4  from .GeneralLineAnalyzer import GeneralLineAnalyzer 
 5   
6 -class FileLineAnalyzer(GeneralLineAnalyzer):
7 """Base class for analyzers that write data to files 8 9 Just a stub to enable legacy code""" 10
11 - def __init__(self,titles=[]):
12 """ 13 @param titles: The titles of the data elements 14 """ 15 GeneralLineAnalyzer.__init__(self,doFiles=True,titles=titles)
16 17 # Should work with Python3 and Python2 18