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