Rename measuredDepth and TVD methods in well log extractor code

This commit is contained in:
Gaute Lindkvist
2018-09-04 12:02:23 +02:00
parent 12484bf1e9
commit 5a2ecf25c2
8 changed files with 41 additions and 22 deletions
@@ -40,6 +40,22 @@ RigWellLogExtractor::~RigWellLogExtractor()
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
const std::vector<double>& RigWellLogExtractor::cellIntersectionMDs()
{
return m_intersectionMeasuredDepths;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
const std::vector<double>& RigWellLogExtractor::cellIntersectionTVDs()
{
return m_intersectionTVDs;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
@@ -79,6 +95,14 @@ const std::vector<size_t>& RigWellLogExtractor::intersectedCellsGlobIdx()
return m_intersectedCellsGlobIdx;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
const RigWellPath* RigWellLogExtractor::wellPathData()
{
return m_wellPath.p();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------