#1980 PLT Plot: Make accessor for intersectedCellsGlobIdx

This commit is contained in:
Rebecca Cox 2017-10-11 11:11:33 +02:00
parent 306e32dba1
commit 901d03079a
2 changed files with 9 additions and 0 deletions

View File

@ -161,6 +161,14 @@ std::vector<WellPathCellIntersectionInfo> RigEclipseWellLogExtractor::cellInters
return cellIntersectionInfos;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
const std::vector<size_t>& RigEclipseWellLogExtractor::intersectedCellsGlobIdx()
{
return m_intersectedCellsGlobIdx;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------

View File

@ -50,6 +50,7 @@ public:
const RigEclipseCaseData* caseData() { return m_caseData.p();}
std::vector<WellPathCellIntersectionInfo> cellIntersectionInfo();
const std::vector<size_t>& intersectedCellsGlobIdx();
protected:
void calculateIntersection();