Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Output/ExceedanceProbabilityCalculationAlphaOutput.cs =================================================================== diff -u -r9d378b8fa49ea011d8f4d229b5970f11c76f8305 -r0467e8cd28578cf205b473d3830dbd02adb29feb --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Output/ExceedanceProbabilityCalculationAlphaOutput.cs (.../ExceedanceProbabilityCalculationAlphaOutput.cs) (revision 9d378b8fa49ea011d8f4d229b5970f11c76f8305) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Output/ExceedanceProbabilityCalculationAlphaOutput.cs (.../ExceedanceProbabilityCalculationAlphaOutput.cs) (revision 0467e8cd28578cf205b473d3830dbd02adb29feb) @@ -25,7 +25,7 @@ /// 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 + public class ExceedanceProbabilityCalculationAlphaOutput : ExceedanceProbabilityCalculationOutputBase { /// /// Creates a new instance of . @@ -38,65 +38,32 @@ /// 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, double alpha) + int sectionId, int layerId, int alternativeId, int variableId, int loadVariableId, double alpha) + : base(ringCombinMethod, presentationSectionId, mainMechanismId, mainMechanismCombinMethod, mechanismId, sectionId, layerId, alternativeId) { - RingCombinMethod = ringCombinMethod; - PresentationSectionId = presentationSectionId; - MainMechanismId = mainMechanismId; - MainMechanismCombinMethod = mainMechanismCombinMethod; - MechanismId = mechanismId; - SectionId = sectionId; - LayerId = layerId; - AlternativeId = alternativeId; + VariableId = variableId; + LoadVariableId = loadVariableId; Alpha = alpha; } /// - /// Gets the Ring Combine Method. + /// Gets the variable id. /// - public int RingCombinMethod { get; private set; } + public int VariableId { get; private set; } /// - /// Gets the Presentation Section Id. + /// Gets the load variable id. /// - public int PresentationSectionId { get; private set; } + public int LoadVariableId { get; private set; } /// - /// Gets the Main Mechanism Id. + /// Gets the alpha result. /// - public int MainMechanismId { get; private set; } - - /// - /// Gets the Main Mechanism Combine Method. - /// - public int MainMechanismCombinMethod { get; private set; } - - /// - /// Gets the Mechanism Id. - /// - public int MechanismId { get; private set; } - - /// - /// Gets the Section Id. - /// - public int SectionId { get; private set; } - - /// - /// Gets the Layer Id. - /// - public int LayerId { get; private set; } - - /// - /// Gets the Alternative Id. - /// - public int AlternativeId { get; private set; } - - /// - /// Gets the Alpha result. - /// public double Alpha { get; private set; } } } \ No newline at end of file