Package systole.domain.analysis.results

Examples of systole.domain.analysis.results.ParameterAOD


            firstMinInDiastole = this.posBeginigDiastole + ((posOfIntersection - this.posBeginigDiastole) / 2);
            posOfMaxInDiastole = posOfIntersection + 1 + this.finalSignal.getSecondDerivative().getPosOfMin(posOfIntersection, this.posOfMax + END_OF_WINDOW_TIME_FOR_DIASTOLE);
        }

        ParameterAOD param = new ParameterAOD();

        this.posBeginigDiastole = firstMinInDiastole;
        param.setInitPos(new ParameterCoord(this.k.multiply(new BigDecimal(firstMinInDiastole)), this.finalSignal.getFinalSegment().get(firstMinInDiastole)));
        param.setEndPos(new ParameterCoord(this.k.multiply(new BigDecimal(posOfMaxInDiastole)), this.finalSignal.getFinalSegment().get(posOfMaxInDiastole)));

        return (param);
    }
View Full Code Here


        return totalCorrelation;
    }

    protected BigDecimal correlationByAOD(Segment segment) {
        ParameterAOD aod = this.patternAnalysis.getAod();

        // tomo los puntos de AOD
        int initOfAOD = aod.getInitPos().getxCoord().intValue();
        int endOfAOD = aod.getEndPos().getxCoord().intValue();

        // desplazo el inicio 10 pts atras para tener mas puntos en cuenta
        initOfAOD -= 10;
        // desplazo el fin 10 pts para tener mas puntos en cuenta
        endOfAOD += 10;
View Full Code Here

     * @param initPoint
     * @param endPoint
     */
    public void updateAOD(ParameterCoord initPoint, ParameterCoord endPoint) {
        if (this.currentResults.getAod() == null) {
            this.currentResults.setAod(new ParameterAOD());
        }
        this.markAsDirty();
        this.currentResults.getAod().setInitPos(initPoint);
        this.currentResults.getAod().setEndPos(endPoint);
        this.setChanged();
View Full Code Here

TOP

Related Classes of systole.domain.analysis.results.ParameterAOD

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.