diff options
-rwxr-xr-x | plot.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -20,6 +20,7 @@ options = [ | |||
20 | 20 | ||
21 | # formatting options | 21 | # formatting options |
22 | # These may or may not be supported by a particular experiment plotter. | 22 | # These may or may not be supported by a particular experiment plotter. |
23 | o(None, '--smooth', action='store_true', dest='smooth'), | ||
23 | o(None, '--paper', action='store_true', dest='paper'), | 24 | o(None, '--paper', action='store_true', dest='paper'), |
24 | o(None, '--wide', action='store_true', dest='wide'), | 25 | o(None, '--wide', action='store_true', dest='wide'), |
25 | o(None, '--column', action='store_true', dest='column'), | 26 | o(None, '--column', action='store_true', dest='column'), |
@@ -42,6 +43,7 @@ defaults = { | |||
42 | 'alternate' : False, | 43 | 'alternate' : False, |
43 | 'column' : False, | 44 | 'column' : False, |
44 | 'slides' : False, | 45 | 'slides' : False, |
46 | 'smooth' : False, | ||
45 | 47 | ||
46 | # legacy "options" that are not actually options. | 48 | # legacy "options" that are not actually options. |
47 | 'xrange' : (0.5, 32.5), | 49 | 'xrange' : (0.5, 32.5), |