Skip to content

Commit

Permalink
re-enable dwell time.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcencini committed Oct 31, 2024
1 parent 73c9893 commit 9daca6c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/pulserver/parsing/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,7 @@ def __post_init__(self): # noqa
if self.raster is not None:
self.raster = round(self.raster * 1e6) / 1e6
if self.dwell is not None:
# self.dwell = round(self.dwell * 1e6) / 1e6
self.dwell = 4e-6
self.dwell = round(self.dwell * 1e6) / 1e6
if self.rf_dead_time is not None:
self.rf_dead_time = round(self.rf_dead_time * 1e6) / 1e6
if self.rf_ringdown_time is not None:
Expand Down

0 comments on commit 9daca6c

Please sign in to comment.