Ejemplo n.º 1
0
 def __init__(self, options):
     super(XTalkTestCoordinator, self).__init__(options, 'XTALK', 'XTALK')
     self.imcount = int(options.get('imcount', '1'))
     xoffset = float(options.get('xoffset'))
     yoffset = float(options.get('yoffset'))
     bot.setLampOffset(xoffset, yoffset)
     self.exposures = options.getList('expose')
     self.points = options.getList('point')
Ejemplo n.º 2
0
 def __init__(self, options):
     super(SpotTestCoordinator, self).__init__(options, 'SPOT_FLAT', 'SPOT')
     self.imcount = int(options.get('imcount', '1'))
     xoffset = float(options.get('xoffset'))
     yoffset = float(options.get('yoffset'))
     self.mask = options.get('mask')
     bot.setLampOffset(xoffset, yoffset)
     self.exposures = options.getList('expose')
     self.points = options.getList('point')
Ejemplo n.º 3
0
 def __init__(self, options):
     super(CCOBTestCoordinator, self).__init__(options, 'CCOB', 'CCOB')
     self.imcount = int(options.get('imcount', '1'))
     xoffset = float(options.get('xoffset'))
     yoffset = float(options.get('yoffset'))
     bot.setLampOffset(xoffset, yoffset)
     self.exposures = options.getList('expose')
     self.points = options.getList('point')
     self.led = 'unknown'
     self.current = -999