// Copyright (C) Stichting Deltares 2016. All rights reserved. // // This file is part of Ringtoets. // // Ringtoets is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // All names, logos, and references to "Deltares" are registered trademarks of // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. namespace Ringtoets.HydraRing.Calculation.Data.Output { /// /// Container of all relevant output generated by a type I calculation via Hydra-Ring: /// Given a set of random variables, compute the probability of failure. /// public class ExceedanceProbabilityCalculationAlphaOutput : ExceedanceProbabilityCalculationOutputBase { /// /// Creates a new instance of . /// /// The ring combine method used. /// The presentation section id used. /// The main mechanism id. /// The main mechanism combine method used. /// The mechanism id used. /// The section id used. /// The layer id used. /// The alternative id used. /// The variable id used. /// The load variable id used. /// The alpha value. public ExceedanceProbabilityCalculationAlphaOutput(int ringCombinMethod, int presentationSectionId, int mainMechanismId, int mainMechanismCombinMethod, int mechanismId, int sectionId, int layerId, int alternativeId, int variableId, int loadVariableId, double alpha) : base(ringCombinMethod, presentationSectionId, mainMechanismId, mainMechanismCombinMethod, mechanismId, sectionId, layerId, alternativeId) { VariableId = variableId; LoadVariableId = loadVariableId; Alpha = alpha; } /// /// Gets the variable id. /// public int VariableId { get; private set; } /// /// Gets the load variable id. /// public int LoadVariableId { get; private set; } /// /// Gets the alpha result. /// public double Alpha { get; private set; } } }