forked from mxcube/HardwareObjects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResolutionMockup.py
110 lines (82 loc) · 2.8 KB
/
ResolutionMockup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
from HardwareRepository import BaseHardwareObjects
import logging
import math
class ResolutionMockup(BaseHardwareObjects.Equipment):
def _init(self):
self.connect("equipmentReady", self.equipmentReady)
self.connect("equipmentNotReady", self.equipmentNotReady)
return BaseHardwareObjects.Equipment._init(self)
def init(self):
self.currentResolution = 3
self.detmState = None
self.current_wavelength = 10
self.energy = 12
def beam_centre_updated(self, beam_pos_dict):
pass
def getWavelength(self):
if self.wavelength is None:
if self.energy is None:
return self.getwavelength(wait=True)
else:
return 12.3984 / self.energy.getPosition()
else:
return self.wavelength.getPosition()
def wavelengthChanged(self, pos=None):
if pos is None:
pos = self.getWavelength()
self.current_wavelength = pos
self.recalculateResolution()
def energyChanged(self, energy):
self.wavelengthChanged(12.3984 / energy)
def res2dist(self, res=None):
self.current_wavelength = self.getWavelength()
if res is None:
res = self.currentResolution
try:
ttheta = 2 * math.asin(self.current_wavelength / (2 * res))
return self.det_radius / math.tan(ttheta)
except:
return None
def dist2res(self, dist=None):
dist = 520
try:
ttheta = math.atan(self.det_radius / dist)
return self.current_wavelength / (2 * math.sin(ttheta / 2))
except:
logging.getLogger().exception("error while calculating resolution")
return None
def recalculateResolution(self):
pass
def equipmentReady(self):
self.emit("deviceReady")
def equipmentNotReady(self):
self.emit("deviceNotReady")
def getPosition(self):
if self.currentResolution is None:
self.recalculateResolution()
return self.currentResolution
def get_value(self):
return self.getPosition()
def newResolution(self, res):
self.currentResolution = res
self.emit("positionChanged", (res, ))
self.emit('valueChanged', (res, ))
def getState(self):
pass
def connectNotify(self, signal):
pass
def detmStateChanged(self, state):
pass
def detmPositionChanged(self, pos):
pass
def getLimits(self, callback=None, error_callback=None):
return (0, 20)
def move(self, pos, wait=True):
logging.getLogger().info("move Resolution to %s", pos)
self.newResolution(pos)
def motorIsMoving(self):
return False
def newDistance(self, dist):
pass
def stop(self):
pass