Changeset 14458 for fact/tools/PyDimCtrl/ScriptsForPyDimCtrl.py
- Timestamp:
- 10/03/12 21:27:51 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fact/tools/PyDimCtrl/ScriptsForPyDimCtrl.py
r14457 r14458 1 #!/usr/bin/python 1 #!/usr/bin/python -tti 2 2 3 3 import time … … 150 150 """ 151 151 152 start = time ()152 start = time.time() 153 153 while (feedback.stn != 12): 154 154 time.sleep(0.1) 155 if time () > start + 10.:155 if time.time() > start + 10.: 156 156 print "===================================================" 157 157 print " feedback is not in state 'CurrentControl' " … … 166 166 bias_control.set_global_dac(1) 167 167 168 start = time ()168 start = time.time() 169 169 while (bias_control.stn != 9): 170 170 time.sleep(0.1) 171 if time () > start + 10.:171 if time.time() > start + 10.: 172 172 print '===================================================' 173 173 print ' switching on bias not successfull' … … 430 430 431 431 # Take a DRS-Calibration before beginning to take physics Data 432 TakeDrsCalibration()432 #TakeDrsCalibration() 433 433 434 434 # check feedback state before switching BIAS ON and ramping up to nominal Voltage … … 983 983 'wobble_angle' : wobble_angle, 984 984 'source_name' : sourcename } 985 last_drive_method(**last_drive_kwargs) 985 kwa = last_drive_kwargs 986 last_drive_method(kwa['wobble_offset'], kwa['wobble_angle'], kwa['source_name']) 986 987 987 988 print '... done' … … 1036 1037 1037 1038 StopTracking() 1039 1040 def PrintCurrents( x = 1.0): 1041 while True: 1042 time.sleep( x ) 1043 print time.strftime('%d %b %Y %H:%M:%S UTC', time.gmtime()), GetBiasCurrent() 1044 1045 def WaitForTracking(): 1046 drive_control.wait(7) #Moving 1047 drive_control.wait(8) #Tracking 1048 time.sleep(10) 1049 1050 1051 if __name__ == '__main__': 1052 print 'Welcome to PyDimCtrl' 1053 make_sourcedict() 1054 print 1055 print 'possible sources:' 1056 print sorted( sourcedict.keys() )
Note:
See TracChangeset
for help on using the changeset viewer.