mxcubecore.queue_entry.energy_scan#

Classes

EnergyScanQueueEntry([view, data_model])

class mxcubecore.queue_entry.energy_scan.EnergyScanQueueEntry(view=None, data_model=None)[source]#

Bases: BaseQueueEntry

execute()[source]#

Execute method, should be overridden my subclasses, defines the main body of the procedure to be performed when the entry is executed.

The default executer calls execute on all child entries after this method but before post_execute.

post_execute()[source]#

Procedure to be done after execute, and execute of all children of this entry.

pre_execute()[source]#

Procedure to be done before execute.

stop()[source]#

Stops the execution of this entry, should free external resources, cancel all pending processes and so on.