Changeset 14116
- Timestamp:
- 06/08/12 15:29:41 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fact/tools/pyscripts/pyfact/plotters.py
r13415 r14116 17 17 def __init__(self, name, x, style = 'b', xlabel='x', ylabel='y'): 18 18 """ initialize the object """ 19 19 self.__module__ = 'plotters' 20 20 self.name = name 21 21 self.fig = plt.figure() … … 38 38 def __init__(self, name, x=None, style = '.:', xlabel='x', ylabel='y', ion=True, grid=True, fname=None): 39 39 """ initialize the object """ 40 40 self.__module__ = 'plotters' 41 41 self.name = name 42 42 self.x = x … … 103 103 def __init__(self, name, ion=True, grid=True, fname=None, map_file_path = '../map_dn.txt', vmin=None, vmax=None): 104 104 """ initialize the object """ 105 self.__module__ = 'plotters' 105 106 path = os.path.abspath(__file__) 106 107 path = os.path.dirname(path)
Note:
See TracChangeset
for help on using the changeset viewer.