Skip to content
Snippets Groups Projects
Commit 79b0e1a8 authored by Sander de Snoo's avatar Sander de Snoo
Browse files

Removed unintended print statements from time-trace feature

parent 470e56bb
No related branches found
No related tags found
No related merge requests found
......@@ -397,8 +397,6 @@ class sequencer():
t_measure = m.t_measure
# if t_measure = -1, then measure till end of sequence. (time trace feature)
if t_measure < 0:
print(self.total_time)
print(self._measurements_description.start_times[m.name])
t_measure = self.total_time - self._measurements_description.start_times[m.name]
else:
raise Exception(f't_measure must be number and not a {type(m.t_measure)} for time traces')
......@@ -413,7 +411,6 @@ class sequencer():
m.n_samples[i], m.interval = \
self.uploader.actual_acquisition_points(m.acquisition_channel,
t, sample_rate)
print(m.n_samples, m.interval)
else:
print(f'WARNING {type(self.uploader)} is missing method actual_acquisition_points(); using old computation')
m.n_samples = self.uploader.get_num_samples(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment