Examples of MassDetectorSetupDialog


Examples of net.sf.mzmine.modules.rawdatamethods.peakpicking.massdetection.MassDetectorSetupDialog

  public ExactMassDetectorParameters() {
    super(new UserParameter[]{noiseLevel});
  }

  public ExitCode showSetupDialog() {
    MassDetectorSetupDialog dialog = new MassDetectorSetupDialog(
        ExactMassDetector.class, this);
    dialog.setVisible(true);
    return dialog.getExitCode();
  }
View Full Code Here

Examples of net.sf.mzmine.modules.rawdatamethods.peakpicking.massdetection.MassDetectorSetupDialog

  public LocalMaxMassDetectorParameters() {
    super(new UserParameter[]{noiseLevel});
  }

  public ExitCode showSetupDialog() {
    MassDetectorSetupDialog dialog = new MassDetectorSetupDialog(
        LocalMaxMassDetector.class, this);
    dialog.setVisible(true);
    return dialog.getExitCode();
  }
View Full Code Here

Examples of net.sf.mzmine.modules.rawdatamethods.peakpicking.massdetection.MassDetectorSetupDialog

    super(new UserParameter[]{noiseLevel, minimumMZPeakWidth,
        maximumMZPeakWidth});
  }

  public ExitCode showSetupDialog() {
    MassDetectorSetupDialog dialog = new MassDetectorSetupDialog(
        RecursiveMassDetector.class, this);
    dialog.setVisible(true);
    return dialog.getExitCode();
  }
View Full Code Here

Examples of net.sf.mzmine.modules.rawdatamethods.peakpicking.massdetection.MassDetectorSetupDialog

  public CentroidMassDetectorParameters() {
    super(new UserParameter[]{noiseLevel});
  }

  public ExitCode showSetupDialog() {
    MassDetectorSetupDialog dialog = new MassDetectorSetupDialog(
        CentroidMassDetector.class, this);
    dialog.setVisible(true);
    return dialog.getExitCode();
  }
View Full Code Here

Examples of net.sf.mzmine.modules.rawdatamethods.peakpicking.massdetection.MassDetectorSetupDialog

  public WaveletMassDetectorParameters() {
    super(new Parameter[]{noiseLevel, scaleLevel, waveletWindow});
  }

  public ExitCode showSetupDialog() {
    MassDetectorSetupDialog dialog = new MassDetectorSetupDialog(
        WaveletMassDetector.class, this);
    dialog.setVisible(true);
    return dialog.getExitCode();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.