Added illysam branch
[hooke.git] / plugins / plot.py
1 #!/usr/bin/env python
2
3 '''
4 plot.py
5
6 Plot commands for Hooke.
7
8 Copyright 2010 by Dr. Rolf Schmidt (Concordia University, Canada)
9
10 This program is released under the GNU General Public License version 2.
11 '''
12
13 class plotCommands(object):
14     '''
15     Plot commands to replot the original data with fits (if applicable)
16     but without secondary plots (unless they are part of the original data)
17     '''
18
19     def _plug_init(self):
20         pass
21
22     def do_replot(self):
23         self.UpdatePlot()