From 5feee83706c1600e2388cf2ebe718da8670e28e6 Mon Sep 17 00:00:00 2001 From: Rebecca Cox Date: Mon, 6 Nov 2017 08:55:14 +0100 Subject: [PATCH] #2077 Well Allocation Plot: Formation names for pseudo length --- ApplicationCode/ProjectDataModel/RimWellLogTrack.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ApplicationCode/ProjectDataModel/RimWellLogTrack.cpp b/ApplicationCode/ProjectDataModel/RimWellLogTrack.cpp index e009dc493c..0da528cc5b 100644 --- a/ApplicationCode/ProjectDataModel/RimWellLogTrack.cpp +++ b/ApplicationCode/ProjectDataModel/RimWellLogTrack.cpp @@ -1013,11 +1013,11 @@ void RimWellLogTrack::findFormationNamesToPlot(const CurveSamplingPointData& std::vector depthVector; - if (depthType == RimWellLogPlot::MEASURED_DEPTH) + if (depthType == RimWellLogPlot::MEASURED_DEPTH || depthType == RimWellLogPlot::PSEUDO_LENGTH) { depthVector = curveData.md; } - else + else if(depthType == RimWellLogPlot::TRUE_VERTICAL_DEPTH) { depthVector = curveData.tvd; }