Class OutOfPlane

  • All Implemented Interfaces:
    Searchable

    public class OutOfPlane
    extends java.lang.Object
    implements Searchable
    • Constructor Summary

      Constructors 
      Constructor Description
      OutOfPlane​(Tables t, java.lang.String csvpath)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int get​(int row, int col)
      This should get an integer value given a column and row.
      double getKoop​(int index)  
      double getKoop​(MMFFMolecule mol, int ac, int a1, int a2, int a3)
      Returns the Koop parameters from the OutOfPlane table.
      int length()
      This function should return the total number of rows in a searchable table.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • OutOfPlane

        public OutOfPlane​(Tables t,
                          java.lang.String csvpath)
    • Method Detail

      • get

        public int get​(int row,
                       int col)
        Description copied from interface: Searchable
        This should get an integer value given a column and row. The binary search function only searches columns containing integers for a value.
        Specified by:
        get in interface Searchable
        Parameters:
        row - The row in the table.
        col - The column in the row to return.
        Returns:
        The value at 'col' in 'row'.
      • length

        public int length()
        Description copied from interface: Searchable
        This function should return the total number of rows in a searchable table. This is normally just the length of the array.
        Specified by:
        length in interface Searchable
        Returns:
        The number of elements that can be searched.
      • getKoop

        public double getKoop​(MMFFMolecule mol,
                              int ac,
                              int a1,
                              int a2,
                              int a3)
        Returns the Koop parameters from the OutOfPlane table.
        Parameters:
        mol - The molecule that the atoms are in.
        ac - The central atom.
        a1 - Atom neighbour 1.
        a2 - Atom neighbour 2.
        a3 - Atom neighbour 3.
        Returns:
        The Koop floating point value.
      • getKoop

        public double getKoop​(int index)