Skip to content

Commit fb669bf

Browse files
committed
adds clock rate to saved data
1 parent 191249a commit fb669bf

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/applications/piezoscan.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -420,17 +420,20 @@ def start_scan(self, event = None):
420420
self.scan_thread.start()
421421

422422
def save_scan(self, event = None):
423-
myformats = [('Compressed Numpy MultiArray', '*.npz'), ('Numpy Array', '*.npy'), ('HDF5', '*.h5')]
423+
myformats = [('Compressed Numpy MultiArray', '*.npz'), ('Numpy Array (count rate only)', '*.npy'), ('HDF5', '*.h5')]
424424
afile = tk.filedialog.asksaveasfilename(filetypes=myformats, defaultextension='.npz')
425425
logger.info(afile)
426426
file_type = afile.split('.')[-1]
427427
if afile is None or afile == '':
428428
return # selection was canceled.
429429

430-
data = dict(raw_counts=self.counter_scanner.scanned_raw_counts,
430+
data = dict(
431+
raw_counts=self.counter_scanner.scanned_raw_counts,
431432
count_rate=self.counter_scanner.scanned_count_rate,
432433
scan_range=self.counter_scanner.get_completed_scan_range(),
433-
step_size=self.counter_scanner.step_size)
434+
step_size=self.counter_scanner.step_size,
435+
daq_clock_rate=self.counter_scanner.rate_counter.clock_rate,
436+
)
434437

435438
if file_type == 'npy':
436439
np.save(afile, data['count_rate'])

0 commit comments

Comments
 (0)