Added 'Command stack' section to doc/tutorial.txt
authorW. Trevor King <wking@drexel.edu>
Tue, 17 Aug 2010 13:21:18 +0000 (09:21 -0400)
committerW. Trevor King <wking@drexel.edu>
Tue, 17 Aug 2010 13:21:18 +0000 (09:21 -0400)
doc/tutorial.txt
test/tutorial.py

index 80dfb53bb9e1288165dd1edb17e07d1d741cbe8b..4ae616b83dd5999a0d6cc5e04fb5393d2249af4b 100644 (file)
@@ -291,7 +291,7 @@ that create new data columns (e.g. `deflection (N)`) or store
 information in a curve's `info` dictionary (e.g. `flat filter peaks`).
 You can, if necessary, adjust the names of input and output columns
 and `info` values to combine the available commands in new and useful
-ways.
+ways.::
 
     hooke> zero_surface_contact_point --block retract
     hooke> flat_filter_peaks --block retract --min_points 1
@@ -306,7 +306,32 @@ ways.
 
 See each command's `Help`_ for details.
 
-.. todo:: Discuss command stacks and polymer model fitting.
+Command stacks
+~~~~~~~~~~~~~~
+
+Since you are likely to apply similar analysis to several curves,
+Hooke provides :mod:`command stacks <hooke.command_stack>` for
+bundling groups of commands.::
+
+    hooke> start_command_capture
+    hooke> zero_surface_contact_point --block retract
+    hooke> flat_filter_peaks --block retract --min_points 1
+    ...
+    hooke> stop_command_capture
+
+You can check the state of the command stack with
+``get_command_stack`` and the state of capture with
+``get_command_capture_state``.  If you make mistakes, you can pop
+commands from the stack with ``pop_command_from_stack``.  If you stop
+capturing a command stack (e.g. to test a complicated command before
+continuing), you can continue adding to the same stack with
+``restart_command_capture.``
+
+You can also save command stacks to disk (and reload them later,
+potentially in a different Hooke session).
+
+    hooke> save_command_stack --output my_stack
+    hooke> load_command_stack --input my_stack
 
 Multiple curve fitting and measuring
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
index 7e9ec3381d20ee7d5ebaad4da3dc9b345cc26300..6a6ea6c01c63e4476d81707d3e0760023f93e596 100644 (file)
@@ -231,6 +231,10 @@ See :file:`delta.py`.
 
 *Worm like chain and freely jointed chain fitting*
 
+*Command stacks*
+
+See :file:`command_stack.py`and :file:`command_stack_save_load.py`.
+
 *Multiple curve fitting and measuring*
 
 *Fast curve reviewing and saving*