16 Handler class to start processes in an IPython notebook in a convenient way.
17 From this whole framework you should
not need to create any instances by yourself but rather use the
18 given ipython handler
for this.
23 Create a handler object
in the beginning of your NB
and use the two methods `process`
24 and `process_parameter_space` to turn a path
or a path creator function into a Basf2Calculation.
25 Do
not create calculations on you own.
27 from tracking.validation.ipython_handler
import handler
31 calculation = handler.process(path)
37 Set the ipython_handler_basf2 related shortcuts.
50 def process(self, path, result_queue=None, max_event=0):
52 Shortcut for convenience.
54 return IPythonHandler.process(self, result_queue=result_queue, path=path, max_event=max_event)
59 Show a nice styling :-)