Skip to content

Commit

Permalink
Calibration is saved with measurement
Browse files Browse the repository at this point in the history
  • Loading branch information
braden6521 committed Apr 18, 2024
1 parent 5db9b31 commit f4f974a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion contrib/app/sofast/SofastCommandLineInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,9 @@ def func_save_measurement_fringe(self):
measurement = self.system_fringe.get_measurements(
self.measure_point_optic, self.dist_optic_screen, self.name_optic
)[0]
measurement.save_to_hdf(f'{self.dir_save_fringe:s}/{self.timestamp_fringe_measurement:s}_measurement_fringe.h5')
file = f'{self.dir_save_fringe:s}/{self.timestamp_fringe_measurement:s}_measurement_fringe.h5'
measurement.save_to_hdf(file)
self.system_fringe.calibration.save_to_hdf(file)
self.system_fringe.run_next_in_queue()

def func_save_measurement_fixed(self):
Expand Down

0 comments on commit f4f974a

Please sign in to comment.