public void CreatePeakMatchedPlots(FeaturesPeakMatchedEventArgs e) { Action workAction = () => Reporter.CreatePeakMatchedPlots(e); ThreadSafeDispatcher.Invoke(workAction); }
public void CreatePeakMatchedPlots(FeaturesPeakMatchedEventArgs e) { }
/// <summary> /// Logs when features are peak matched. /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void processor_FeaturesPeakMatched(object sender, FeaturesPeakMatchedEventArgs e) { Logger.PrintMessage("Creating peak match plots"); if (m_config.ShouldCreatePlots) { m_reportCreator.CreatePeakMatchedPlots(e); } }