All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rcsb.cif.schema.mm.DiffrnOrientMatrix Maven / Gradle / Ivy

package org.rcsb.cif.schema.mm;

import org.rcsb.cif.model.*;
import org.rcsb.cif.schema.*;

import javax.annotation.Generated;

/**
 * Data items in the DIFFRN_ORIENT_MATRIX category record details
 * about the orientation matrix used in the measurement of the
 * diffraction data.
 */
@Generated("org.rcsb.cif.schema.generator.SchemaGenerator")
public class DiffrnOrientMatrix extends DelegatingCategory {
    public DiffrnOrientMatrix(Category delegate) {
        super(delegate);
    }

    @Override
    protected Column createDelegate(String columnName, Column column) {
        switch (columnName) {
            case "diffrn_id":
                return getDiffrnId();
            case "type":
                return getType();
            case "UB[1][1]":
                return getUB11();
            case "UB[1][2]":
                return getUB12();
            case "UB[1][3]":
                return getUB13();
            case "UB[2][1]":
                return getUB21();
            case "UB[2][2]":
                return getUB22();
            case "UB[2][3]":
                return getUB23();
            case "UB[3][1]":
                return getUB31();
            case "UB[3][2]":
                return getUB32();
            case "UB[3][3]":
                return getUB33();
            default:
                return new DelegatingColumn(column);
        }
    }

    /**
     * This data item is a pointer to _diffrn.id in the DIFFRN
     * category.
     * @return StrColumn
     */
    public StrColumn getDiffrnId() {
        return delegate.getColumn("diffrn_id", DelegatingStrColumn::new);
    }

    /**
     * A description of the orientation matrix type and how it should
     * be applied to define the orientation of the crystal precisely
     * with respect to the diffractometer axes.
     * @return StrColumn
     */
    public StrColumn getType() {
        return delegate.getColumn("type", DelegatingStrColumn::new);
    }

    /**
     * The elements of the 3x3 matrix that defines the dimensions
     * of the reciprocal cell and its orientation with respect to the
     * local diffractometer axes. See also _diffrn_orient_matrix.type.
     * @return FloatColumn
     */
    public FloatColumn getUB11() {
        return delegate.getColumn("UB[1][1]", DelegatingFloatColumn::new);
    }

    /**
     * The elements of the 3x3 matrix that defines the dimensions
     * of the reciprocal cell and its orientation with respect to the
     * local diffractometer axes. See also _diffrn_orient_matrix.type.
     * @return FloatColumn
     */
    public FloatColumn getUB12() {
        return delegate.getColumn("UB[1][2]", DelegatingFloatColumn::new);
    }

    /**
     * The elements of the 3x3 matrix that defines the dimensions
     * of the reciprocal cell and its orientation with respect to the
     * local diffractometer axes. See also _diffrn_orient_matrix.type.
     * @return FloatColumn
     */
    public FloatColumn getUB13() {
        return delegate.getColumn("UB[1][3]", DelegatingFloatColumn::new);
    }

    /**
     * The elements of the 3x3 matrix that defines the dimensions
     * of the reciprocal cell and its orientation with respect to the
     * local diffractometer axes. See also _diffrn_orient_matrix.type.
     * @return FloatColumn
     */
    public FloatColumn getUB21() {
        return delegate.getColumn("UB[2][1]", DelegatingFloatColumn::new);
    }

    /**
     * The elements of the 3x3 matrix that defines the dimensions
     * of the reciprocal cell and its orientation with respect to the
     * local diffractometer axes. See also _diffrn_orient_matrix.type.
     * @return FloatColumn
     */
    public FloatColumn getUB22() {
        return delegate.getColumn("UB[2][2]", DelegatingFloatColumn::new);
    }

    /**
     * The elements of the 3x3 matrix that defines the dimensions
     * of the reciprocal cell and its orientation with respect to the
     * local diffractometer axes. See also _diffrn_orient_matrix.type.
     * @return FloatColumn
     */
    public FloatColumn getUB23() {
        return delegate.getColumn("UB[2][3]", DelegatingFloatColumn::new);
    }

    /**
     * The elements of the 3x3 matrix that defines the dimensions
     * of the reciprocal cell and its orientation with respect to the
     * local diffractometer axes. See also _diffrn_orient_matrix.type.
     * @return FloatColumn
     */
    public FloatColumn getUB31() {
        return delegate.getColumn("UB[3][1]", DelegatingFloatColumn::new);
    }

    /**
     * The elements of the 3x3 matrix that defines the dimensions
     * of the reciprocal cell and its orientation with respect to the
     * local diffractometer axes. See also _diffrn_orient_matrix.type.
     * @return FloatColumn
     */
    public FloatColumn getUB32() {
        return delegate.getColumn("UB[3][2]", DelegatingFloatColumn::new);
    }

    /**
     * The elements of the 3x3 matrix that defines the dimensions
     * of the reciprocal cell and its orientation with respect to the
     * local  diffractometer axes. See also _diffrn_orient_matrix.type.
     * @return FloatColumn
     */
    public FloatColumn getUB33() {
        return delegate.getColumn("UB[3][3]", DelegatingFloatColumn::new);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy