mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-11 07:56:08 -06:00
#1858 Move method to WellLogExtractor base class
This commit is contained in:
parent
6c3f569499
commit
68f5253644
@ -134,13 +134,6 @@ void RigEclipseWellLogExtractor::curveData(const RigResultAccessor* resultAccess
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
|
||||||
///
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
|
||||||
const std::vector<size_t>& RigEclipseWellLogExtractor::intersectedCellsGlobIdx()
|
|
||||||
{
|
|
||||||
return m_intersectedCellsGlobIdx;
|
|
||||||
}
|
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
///
|
///
|
||||||
|
@ -40,7 +40,6 @@ public:
|
|||||||
void curveData(const RigResultAccessor* resultAccessor, std::vector<double>* values );
|
void curveData(const RigResultAccessor* resultAccessor, std::vector<double>* values );
|
||||||
const RigEclipseCaseData* caseData() { return m_caseData.p();}
|
const RigEclipseCaseData* caseData() { return m_caseData.p();}
|
||||||
|
|
||||||
const std::vector<size_t>& intersectedCellsGlobIdx();
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void calculateIntersection();
|
void calculateIntersection();
|
||||||
|
@ -71,6 +71,14 @@ std::vector<WellPathCellIntersectionInfo> RigWellLogExtractor::intersectionInfo(
|
|||||||
return infoVector;
|
return infoVector;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
const std::vector<size_t>& RigWellLogExtractor::intersectedCellsGlobIdx()
|
||||||
|
{
|
||||||
|
return m_intersectedCellsGlobIdx;
|
||||||
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
///
|
///
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
@ -61,6 +61,7 @@ public:
|
|||||||
|
|
||||||
const std::vector<double>& measuredDepth() { return m_measuredDepth; }
|
const std::vector<double>& measuredDepth() { return m_measuredDepth; }
|
||||||
const std::vector<double>& trueVerticalDepth() { return m_trueVerticalDepth; }
|
const std::vector<double>& trueVerticalDepth() { return m_trueVerticalDepth; }
|
||||||
|
const std::vector<size_t>& intersectedCellsGlobIdx();
|
||||||
|
|
||||||
const RigWellPath* wellPathData() { return m_wellPath.p();}
|
const RigWellPath* wellPathData() { return m_wellPath.p();}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user