Examples of Nmr1dUnit


Examples of org.bmdrc.nmr.Nmr1dUnit

        return theFunctionalGroupIndexListInMolecule;
    }

    private boolean __isShiftInRange(Nmr1dUnit thePeak, String theFunctionalGroup) {
        Nmr1dUnit theCriterionPeak = this.getReferenceCorrelationTable().get(theFunctionalGroup);

        try {
        if (thePeak.getChemicalShift() >= theCriterionPeak.getMinOfRange() && thePeak.getChemicalShift() <= theCriterionPeak.getMaxOfRange()) {
            return true;
        }
        } catch(NullPointerException e) {
            e.printStackTrace();
            System.err.println(theFunctionalGroup);
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.