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

Source Code for Module PyFoam.LogAnalysis.TimeLineLineAnalyzer

 1  #  ICE Revision: $Id: TimeLineLineAnalyzer.py 7832 2007-08-28 13:07:26Z bgschaid $  
 2  """Line analyzer that collects datga in arrays""" 
 3   
 4  from GeneralLineAnalyzer import GeneralLineAnalyzer 
 5   
6 -class TimeLineLineAnalyzer(GeneralLineAnalyzer):
7 """Base class for analyzers that collect data in arrays 8 9 Just a stub to enable legacy code"""
10 - def __init__(self):
11 GeneralLineAnalyzer.__init__(self,doTimelines=True)
12