Package org.bmdrc.nmr

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

Related Classes of org.bmdrc.nmr.Nmr1dUnit

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.