#2035 Add MD to the intesection struct available from the WellLogExtractors

This commit is contained in:
Jacob Støren 2017-11-06 22:21:42 +01:00
parent 1089060539
commit b708bb0ac3
2 changed files with 6 additions and 0 deletions

View File

@ -55,6 +55,9 @@ std::vector<CellIntersectionInfo> RigWellLogExtractor::intersectionInfo() const
cellInfo.globCellIndex = m_intersectedCellsGlobIdx[i];
cellInfo.startPoint = m_intersections[i];
cellInfo.endPoint = m_intersections[i+1];
cellInfo.startMD = m_measuredDepth[i];
cellInfo.endMD = m_measuredDepth[i+1];
cellInfo.intersectedCellFaceIn = m_intersectedCellFaces[i];
cellInfo.intersectedCellFaceOut = m_intersectedCellFaces[i+1];

View File

@ -40,6 +40,9 @@ struct CellIntersectionInfo
size_t globCellIndex;
cvf::Vec3d startPoint;
cvf::Vec3d endPoint;
double startMD;
double endMD;
cvf::StructGridInterface::FaceType intersectedCellFaceIn;
cvf::StructGridInterface::FaceType intersectedCellFaceOut;
};