Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Output/ExceedanceProbabilityCalculationOutput.cs
===================================================================
diff -u -r9d378b8fa49ea011d8f4d229b5970f11c76f8305 -r0467e8cd28578cf205b473d3830dbd02adb29feb
--- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Output/ExceedanceProbabilityCalculationOutput.cs (.../ExceedanceProbabilityCalculationOutput.cs) (revision 9d378b8fa49ea011d8f4d229b5970f11c76f8305)
+++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Output/ExceedanceProbabilityCalculationOutput.cs (.../ExceedanceProbabilityCalculationOutput.cs) (revision 0467e8cd28578cf205b473d3830dbd02adb29feb)
@@ -27,14 +27,14 @@
/// 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 ExceedanceProbabilityCalculationOutput
+ public class ExceedanceProbabilityCalculationOutput : ExceedanceProbabilityCalculationOutputBase
{
///
/// Creates a new instance of .
///
/// The ring combine method used.
/// The presentation section id used.
- /// The main mechanism id.
+ /// The main mechanism id used.
/// The main mechanism combine method used.
/// The mechanism id used.
/// The section id used.
@@ -44,66 +44,19 @@
public ExceedanceProbabilityCalculationOutput(int ringCombinMethod, int presentationSectionId,
int mainMechanismId, int mainMechanismCombinMethod, int mechanismId,
int sectionId, int layerId, int alternativeId, double beta)
+ : 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;
Beta = beta;
Alphas = new List();
}
///
- /// Gets the Ring Combine Method.
+ /// Gets the beta result.
///
- public int RingCombinMethod { get; private set; }
-
- ///
- /// Gets the Presentation Section Id.
- ///
- public int PresentationSectionId { get; private set; }
-
- ///
- /// Gets the Main Mechanism Id.
- ///
- 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 Beta result.
- ///
public double Beta { get; private set; }
///
- /// Gets the Alpha result values.
+ /// Gets the alpha result values.
///
public IList Alphas { get; private set; }
}