22 __all__ = [
'DetectorTypeValNameDict',
'DetectorTypeNameValDict']
24 from .detector
import DetectorType
26 DetectorTypeValNameDict = {
27 DetectorType.SCIENCE:
"SCIENCE",
28 DetectorType.FOCUS:
"FOCUS",
29 DetectorType.GUIDER:
"GUIDER",
30 DetectorType.WAVEFRONT:
"WAVEFRONT",
32 DetectorTypeNameValDict = {val: key
for key, val
in
33 DetectorTypeValNameDict.items()}