1 |
gross |
792 |
""" |
2 |
|
|
|
3 |
|
|
classes dealing with data for the visualization |
4 |
|
|
|
5 |
|
|
@var __author__: name of author |
6 |
|
|
@var __license__: licence agreement |
7 |
|
|
@var __copyright__: copyrights |
8 |
|
|
@var __url__: url entry point on documentation |
9 |
|
|
@var __version__: version |
10 |
|
|
@var __date__: date of the version |
11 |
|
|
""" |
12 |
|
|
|
13 |
|
|
__copyright__=""" Copyright (c) 2006 by ACcESS MNRF |
14 |
|
|
http://www.access.edu.au |
15 |
|
|
Primary Business: Queensland, Australia""" |
16 |
|
|
__license__="""Licensed under the Open Software License version 3.0 |
17 |
|
|
http://www.opensource.org/licenses/osl-3.0.php""" |
18 |
|
|
__author__="Paul Cochrane, L. Gross" |
19 |
|
|
__url__="http://www.iservo.edu.au/esys" |
20 |
|
|
__version__="$Revision:$" |
21 |
|
|
__date__="$Date:$" |
22 |
|
|
|
23 |
|
|
from common import PyvisiObject |
24 |
|
|
|
25 |
|
|
class DataCollector(PyvisiObject): |
26 |
|
|
""" |
27 |
|
|
a collector for data, typically read from file or from an escript object |
28 |
|
|
""" |
29 |
|
|
pass |
30 |
|
|
|