view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/minfo/BedDiffYearResult.java @ 3897:bce2dd4310a6

MINFO: Updated data fields to fit the needs of bedheight difference calculation. flys-artifacts/trunk@5560 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Raimund Renkert <raimund.renkert@intevation.de>
date Fri, 21 Sep 2012 14:18:16 +0000
parents a1c79d84e3cd
children 95d699c769fb
line wrap: on
line source
package de.intevation.flys.artifacts.model.minfo;

import gnu.trove.TDoubleArrayList;


public class BedDiffYearResult
extends BedDifferencesResult
{

    protected TDoubleArrayList bedHeights;
    protected TDoubleArrayList dataGap;

    public BedDiffYearResult () {
        super();
        this.bedHeights = new TDoubleArrayList();
        this.dataGap = new TDoubleArrayList();
    }

    public BedDiffYearResult(
        TDoubleArrayList kms,
        TDoubleArrayList differences,
        TDoubleArrayList morphWidth,
        TDoubleArrayList bedHeights,
        TDoubleArrayList dataGap
    ) {
        super(kms, differences, morphWidth);
        this.bedHeights = bedHeights;
        this.dataGap = dataGap;
    }

    public TDoubleArrayList getBedHeights() {
        return this.bedHeights;
    }

    public TDoubleArrayList getDataGap() {
        return this.dataGap;
    }
}

http://dive4elements.wald.intevation.org