Exemplo n.º 1
0
 public void CreatePeakMatchedPlots(FeaturesPeakMatchedEventArgs e)
 {
     Action workAction = () => Reporter.CreatePeakMatchedPlots(e);
     ThreadSafeDispatcher.Invoke(workAction);
 }
Exemplo n.º 2
0
 public void CreatePeakMatchedPlots(FeaturesPeakMatchedEventArgs e)
 {
 }
Exemplo n.º 3
0
 /// <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);
     }
 }