-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcheck_alignment.py
52 lines (43 loc) · 1.69 KB
/
check_alignment.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import nuphase
import time
import numpy
NUM_TRIES = 100
sys = nuphase.Nuphase()
sys.boardInit(verbose=False)
sys.calPulser(True, readback=True) #turn on cal pulse feature
num_tests=0
num_success=0
num_almost_success=0
for i in range(NUM_TRIES):
sys.boardInit() #only deal with buffer 0
sys.calPulser(True)
time.sleep(0.2)
sys.softwareTrigger()
time.sleep(0.001)
data = sys.readSysEvent(save=False)
print sys.getMetaData()
location_of_peaks=[]
for chan in range(len(data)):
location_of_peaks.append(numpy.argmax(data[chan]))
earliest_peak = min(location_of_peaks)
latest_peak = max(location_of_peaks)
#condition if peaks caught from multiple pulses
if (latest_peak - earliest_peak) > 300:
print i, location_of_peaks, "skipping, trying again..."
continue
num_tests=num_tests+1
#otherwise, try to align
if location_of_peaks[0] == location_of_peaks[2] == location_of_peaks[4] ==\
location_of_peaks[6] == location_of_peaks[8] == location_of_peaks[10]:
print 'alignment successful: ', location_of_peaks
sys.readSysEvent(save=True, filename='test_alignment.dat') #save pulse event for verification
num_success=num_success+1
else:
print i, 'DATA ARE NOT ALIGNED..', location_of_peaks, earliest_peak, latest_peak
if abs(latest_peak - earliest_peak) == 1:
num_almost_success = num_almost_success + 1
sys.boardInit()
sys.calPulser(False, readback=True)
print '-------------------------'
print 'RESULTS:', num_success, 'pure successes out of', num_tests, 'tries'
print 'RESULTS:', num_success+num_almost_success, 'almost successes (+/-1) out of', num_tests, 'tries'