Examples of IonizationType


Examples of net.sf.mzmine.data.IonizationType

    Double ionMass = getIonMass();
    if (ionMass == null)
      return;

    IonizationType ionType = getIonType();

    double neutral = (ionMass.doubleValue() - ionType.getAddedMass())
        * charge.intValue();

    neutralMassField.setText(MZmineCore.getConfiguration().getMZFormat()
        .format(neutral));
  }
 
View Full Code Here

Examples of net.sf.mzmine.data.IonizationType

    if (exitCode != ExitCode.OK)
      return null;

    String formula = myParameters.getParameter(
        MzRangeCalculatorParameters.formula).getValue();
    IonizationType ionType = myParameters.getParameter(
        MzRangeCalculatorParameters.ionType).getValue();
    MZTolerance mzTolerance = myParameters.getParameter(
        MzRangeCalculatorParameters.mzTolerance).getValue();
    Integer charge = myParameters.getParameter(
        MzRangeCalculatorParameters.charge).getValue();
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.