Пример #1
0
 def __init__(self,
              ontime,
              speed,
              totalTargets,
              maxsteps,
              doTest=False,
              **kwargs):
     FpsSequence.__init__(self, **kwargs)
     timeLim = int(TargetConvergenceTest.timeLim / speed)
     self.fpsCommand(ontime=ontime,
                     speed=speed,
                     totalTargets=totalTargets,
                     maxsteps=maxsteps,
                     timeLim=timeLim)
Пример #2
0
 def __init__(self,
              phi,
              theta,
              stepsize,
              repeat,
              slowOnly,
              doTest=False,
              **kwargs):
     FpsSequence.__init__(self, **kwargs)
     timeLim = repeat * MakeMotorMap.timePerRepeat
     self.fpsCommand(phi=phi,
                     theta=theta,
                     stepsize=stepsize,
                     repeat=repeat,
                     slowOnly=slowOnly,
                     timeLim=timeLim)
Пример #3
0
 def __init__(self, phi, theta, doTest=False, **kwargs):
     FpsSequence.__init__(self, **kwargs)
     self.fpsCommand(phi=phi, theta=theta, timeLim=MakeOntimeMap.timeLim)
Пример #4
0
 def __init__(self, designId, doTest=False, **kwargs):
     FpsSequence.__init__(self, **kwargs)
     self.moveToPfsDesign(designId=designId,
                          timeLim=MoveToPfsDesign.timeLim)
Пример #5
0
 def __init__(self, doTest=False, **kwargs):
     FpsSequence.__init__(self, **kwargs)
     self.fpsCommand(timeLim=GotoVerticalFromPhi60.timeLim)
Пример #6
0
 def __init__(self, doTest=False, **kwargs):
     FpsSequence.__init__(self, **kwargs)
     self.fpsCommand(timeLim=MoveToSafePosition.timeLim)
Пример #7
0
 def __init__(self, phi, theta, all, doTest=False, **kwargs):
     FpsSequence.__init__(self, **kwargs)
     self.fpsCommand(phi=phi,
                     theta=theta,
                     all=all,
                     timeLim=MoveToHome.timeLim)
Пример #8
0
 def __init__(self, angle, iteration, doTest=False, **kwargs):
     FpsSequence.__init__(self, **kwargs)
     timeLim = iteration * MovePhiToAngle.timePerIteration
     self.fpsCommand(angle=angle, iteration=iteration, timeLim=timeLim)
Пример #9
0
 def __init__(self, phi, theta, angleTargets, doTest=False, **kwargs):
     FpsSequence.__init__(self, **kwargs)
     self.fpsCommand(phi=phi,
                     theta=theta,
                     angleTargets=angleTargets,
                     timeLim=AngleConvergenceTest.timeLim)