ophyd.commands.mov

ophyd.commands.mov(positioner, position)

Move positioners to given positions

Move positioners using the move method of the Positioner class.

Parameters:

positioner : Positioner or list

Positioners to move

position : float or list of float

Values to move positioners to.

Examples

Move a single positioner slt1_xc to 10:

>>>mov(slt1_xc, 10)

Move positioner slt1_xg and slt1_yg to 2 and 3 respectively:

>>>mov([slt1_xg, slt1_yg], [2, 3])