view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/RangeWithValues.java @ 3552:1df6984628c3

S/Q: Extented the result data model of the S/Q calculation to store the curve coefficients for each iteration step of the outlier elimination. flys-artifacts/trunk@5146 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 27 Jul 2012 12:36:09 +0000
parents e54053bc0e70
children b220287a171e
line wrap: on
line source
package de.intevation.flys.artifacts.model;

import java.io.Serializable;


/**
 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
 */
public class RangeWithValues implements Serializable {

    protected double   lower;
    protected double   upper;
    protected double[] values;


    public RangeWithValues() {
    }


    public RangeWithValues(double lower, double upper, double[] values) {
        this.lower  = lower;
        this.upper  = upper;
        this.values = values;
    }


    public double getLower() {
        return lower;
    }


    public double getUpper() {
        return upper;
    }


    public double[] getValues() {
        return values;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :

http://dive4elements.wald.intevation.org