Process(): Difference between revisions

From SweepMe! Wiki
Jump to navigation Jump to search
(Process shall not be used by drivers)
m (Fix link to call() article)
Line 1: Line 1:
'process' is a phase where a module performs post-processing. As [[call]] was already performed beforehand and data of the current measurement point cannot be modified any more by drivers, this function is not available for drivers. Use [[process_data()]] instead to process your data before it is called by SweepMe!. In case you have to process some clean-up tasks, use [[finish()]].
'process' is a phase where a module performs post-processing. As [[call()]] was already performed beforehand and data of the current measurement point cannot be modified any more by drivers, this function is not available for drivers. Use [[process_data()]] instead to process your data before it is called by SweepMe!. In case you have to process some clean-up tasks, use [[finish()]].

Revision as of 16:01, 5 March 2024

'process' is a phase where a module performs post-processing. As call() was already performed beforehand and data of the current measurement point cannot be modified any more by drivers, this function is not available for drivers. Use process_data() instead to process your data before it is called by SweepMe!. In case you have to process some clean-up tasks, use finish().