Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/OvertoppingOutput.cs
===================================================================
diff -u -r6306f61e82936c6bb6db70c4a185243cb07f00af -r9726c1ed2a69caa0792394721d1bcf6dc587f421
--- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/OvertoppingOutput.cs (.../OvertoppingOutput.cs) (revision 6306f61e82936c6bb6db70c4a185243cb07f00af)
+++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/OvertoppingOutput.cs (.../OvertoppingOutput.cs) (revision 9726c1ed2a69caa0792394721d1bcf6dc587f421)
@@ -22,7 +22,6 @@
using System;
using Core.Common.Base.Data;
using Ringtoets.Common.Data.IllustrationPoints;
-using Ringtoets.Common.Data.Probability;
namespace Ringtoets.GrassCoverErosionInwards.Data
{
@@ -35,24 +34,17 @@
/// Creates a new instance of .
///
/// The calculated wave height.
- /// The value indicating whether overtopping was dominant in the calculation.
+ /// The value indicating whether overtopping was
+ /// dominant in the calculation.
/// The reliability of the calculation.
- /// The probabilistic assessment output.
/// The general result of this output with the fault tree
/// illustration points.
public OvertoppingOutput(double waveHeight, bool isOvertoppingDominant, double reliability,
- ProbabilityAssessmentOutput probabilityAssessmentOutput,
GeneralResult generalResult)
{
- if (probabilityAssessmentOutput == null)
- {
- throw new ArgumentNullException(nameof(probabilityAssessmentOutput));
- }
-
IsOvertoppingDominant = isOvertoppingDominant;
Reliability = reliability;
WaveHeight = new RoundedDouble(2, waveHeight);
- ProbabilityAssessmentOutput = probabilityAssessmentOutput;
GeneralResult = generalResult;
}
@@ -72,11 +64,6 @@
///
public double Reliability { get; }
- ///
- /// Gets the probabilistic assessment output.
- ///
- public ProbabilityAssessmentOutput ProbabilityAssessmentOutput { get; private set; }
-
public bool HasWaveHeight
{
get
@@ -105,8 +92,6 @@
{
var clone = (OvertoppingOutput) MemberwiseClone();
- clone.ProbabilityAssessmentOutput = (ProbabilityAssessmentOutput) ProbabilityAssessmentOutput.Clone();
-
if (GeneralResult != null)
{
clone.GeneralResult = (GeneralResult) GeneralResult.Clone();