Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators/General/Geometry2DTo1DConverter.cs =================================================================== diff -u -r877 -r937 --- DamEngine/trunk/src/Deltares.DamEngine.Calculators/General/Geometry2DTo1DConverter.cs (.../Geometry2DTo1DConverter.cs) (revision 877) +++ DamEngine/trunk/src/Deltares.DamEngine.Calculators/General/Geometry2DTo1DConverter.cs (.../Geometry2DTo1DConverter.cs) (revision 937) @@ -47,12 +47,12 @@ public class Geometry2DTo1DConverter { /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// Name of the soil geometry2 D. /// The surface line. /// The dike embankment material. - /// The soil base DB. + /// The soil list. public Geometry2DTo1DConverter(string soilGeometry2DName, SurfaceLine2 surfaceLine, Soil dikeEmbankmentMaterial, SoilList soilList) { SoilGeometry2DName = soilGeometry2DName; @@ -63,12 +63,12 @@ } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// Name of the soil geometry2 D. /// The surface line. /// The dike embankment material. - /// The soil base DB. + /// The soil list. /// The x offset soil geometry2 D origin. public Geometry2DTo1DConverter(string soilGeometry2DName, SurfaceLine2 surfaceLine, Soil dikeEmbankmentMaterial, SoilList soilList, double xOffsetSoilGeometry2DOrigin) { @@ -88,8 +88,7 @@ /// Make section on specified x-coordinate. /// Material above surfacelevel of geometry and below surfaceline will be specified as dikeEmbankmentMaterial /// - /// - /// + /// The x coordinate. /// public SoilProfile1D Convert(double xCoordinate) { @@ -136,7 +135,8 @@ /// /// Add toplayer made of dikeEmbankmentMaterial when the surfaceline is higher then the defined 2D-geometry /// - /// + /// The soil profile. + /// The x coordinate. private void AddDikeMaterialIfSurfaceLineAboveGeometrySurface(ref SoilProfile1D soilProfile, double xCoordinate) { double surfaceLevel = this.SurfaceLine.Geometry.GetZAtUnsortedX(xCoordinate);