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

Source Code for Module PyFoam.LogAnalysis.FileLineAnalyzer

 1  #  ICE Revision: $Id: /local/openfoam/Python/PyFoam/PyFoam/LogAnalysis/FileLineAnalyzer.py 1906 2007-08-28T16:16:19.392553Z bgschaid  $  
 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