Generating Results

Using our previously defined variable 'FftMtf'...

bool isFftMtfRunning = FftMtf.IsRunning();
IMessage iM_FftMtfApply = FftMtf.Apply();
IMessage iM_FftMtfApplyAndWait = FftMtf.ApplyAndWaitForCompletion();
FftMtf.WaitForCompletion();
 
  • If an Analysis 'IsRunning()' the results have not yet been computed.
  • 'Apply()' will start an Analysis using the current settings and return. Again, the results are not valid while the Analysis 'IsRunning() '
  • 'WaitForCompletion()' will not return from its call until the Analysis is complete.
  • 'ApplyAndWaitForCompletion()' will start an Analysis and not return until the Analysis is complete.

Next: