21 lines
451 B
Python
21 lines
451 B
Python
'''
|
|
Created on 7 May 2016
|
|
|
|
@author: walton
|
|
'''
|
|
from diffcalc.util import allnum
|
|
|
|
def sim(scn, hkl):
|
|
"""sim hkl scn -- simulates moving scannable (not all)
|
|
"""
|
|
if not isinstance(hkl, (tuple, list)):
|
|
raise TypeError
|
|
|
|
if not allnum(hkl):
|
|
raise TypeError()
|
|
|
|
try:
|
|
print scn.simulateMoveTo(hkl)
|
|
except AttributeError:
|
|
raise TypeError(
|
|
"The first argument does not support simulated moves") |