<!-- To comment something, put dashes and ! like here -->
<config>
<!-- Internal variabls. -->
- <display ext="1" colour_ext="None" ret="1" colour_ret="None" correct="1" colour_correct="None" contact_point="0" medfilt="0" xaxes="0" yaxes="0" flatten="1" temperature="293" auto_fit_points="10" auto_slope_span="10" auto_delta_force="10" fc_showphase="0" fc_showimposed="0" fc_interesting="0"/>
+ <display ext="1" colour_ext="None" ret="1" colour_ret="None" correct="1" colour_correct="None" contact_point="0" medfilt="0" xaxes="0" yaxes="0" flatten="1" temperature="293" auto_fit_points="50" auto_slope_span="20" auto_delta_force="10" fc_showphase="0" fc_showimposed="0" fc_interesting="0"/>
<!--
The following section defines your own work directory. Substitute your work directory.
-->
<workdir>
- /home/glacierre/hooke/
+ insert directory
</workdir>
<!--
#OUTLET management
- def do_outlet_show(self,args):
- self.outlet.printbuf()
+ def do_outlet_show(self,args):
+ '''OUTLET_SHOW
+ ---------
+ Shows current content of outlet with index for reference
+ '''
+ self.outlet.printbuf()
def do_outlet_undo(self, args):
+ '''OUTLET_UNDO
+ ---------
+ Eliminates last entry in outlet
+ '''
print 'Erasing last entry'
self.outlet.pop()
- def do_outlet_delete(self, args):
- if len(args)==0:
- print 'Index needed!, use outlet_show to know it'
- else:
- self.outlet.delete(args)
+ def do_outlet_delete(self, args):
+ '''OUTLET_DELETE
+ Eliminates a particular entry from outlet
+ Syntax: outlet_delete n
+ '''
+ if len(args)==0:
+ print 'Index needed!, use outlet_show to know it'
+ else:
+ self.outlet.delete(args)