#1858 Move method to WellLogExtractor base class

This commit is contained in:
Jacob Støren 2017-12-12 15:00:14 +01:00
parent 6c3f569499
commit 68f5253644
4 changed files with 9 additions and 8 deletions

View File

@ -134,13 +134,6 @@ void RigEclipseWellLogExtractor::curveData(const RigResultAccessor* resultAccess
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
const std::vector<size_t>& RigEclipseWellLogExtractor::intersectedCellsGlobIdx()
{
return m_intersectedCellsGlobIdx;
}
//--------------------------------------------------------------------------------------------------
///

View File

@ -40,7 +40,6 @@ public:
void curveData(const RigResultAccessor* resultAccessor, std::vector<double>* values );
const RigEclipseCaseData* caseData() { return m_caseData.p();}
const std::vector<size_t>& intersectedCellsGlobIdx();
protected:
void calculateIntersection();

View File

@ -71,6 +71,14 @@ std::vector<WellPathCellIntersectionInfo> RigWellLogExtractor::intersectionInfo(
return infoVector;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
const std::vector<size_t>& RigWellLogExtractor::intersectedCellsGlobIdx()
{
return m_intersectedCellsGlobIdx;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------

View File

@ -61,6 +61,7 @@ public:
const std::vector<double>& measuredDepth() { return m_measuredDepth; }
const std::vector<double>& trueVerticalDepth() { return m_trueVerticalDepth; }
const std::vector<size_t>& intersectedCellsGlobIdx();
const RigWellPath* wellPathData() { return m_wellPath.p();}