Package net.sf.mzmine.modules.rawdatamethods.peakpicking.massdetection

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


  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

    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

  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

  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

Related Classes of net.sf.mzmine.modules.rawdatamethods.peakpicking.massdetection.MassDetectorSetupDialog

Copyright © 2018 www.massapicom. 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.