mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#5472 Add indication of water depth to formation and casing track
* Also add lighter formation lines as an option and make this default for WBS plots
This commit is contained in:
@@ -39,7 +39,7 @@ RigWellLogExtractor::~RigWellLogExtractor() {}
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
const std::vector<double>& RigWellLogExtractor::cellIntersectionMDs()
|
||||
const std::vector<double>& RigWellLogExtractor::cellIntersectionMDs() const
|
||||
{
|
||||
return m_intersectionMeasuredDepths;
|
||||
}
|
||||
@@ -47,7 +47,7 @@ const std::vector<double>& RigWellLogExtractor::cellIntersectionMDs()
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
const std::vector<double>& RigWellLogExtractor::cellIntersectionTVDs()
|
||||
const std::vector<double>& RigWellLogExtractor::cellIntersectionTVDs() const
|
||||
{
|
||||
return m_intersectionTVDs;
|
||||
}
|
||||
@@ -88,7 +88,7 @@ std::vector<WellPathCellIntersectionInfo> RigWellLogExtractor::cellIntersectionI
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
const std::vector<size_t>& RigWellLogExtractor::intersectedCellsGlobIdx()
|
||||
const std::vector<size_t>& RigWellLogExtractor::intersectedCellsGlobIdx() const
|
||||
{
|
||||
return m_intersectedCellsGlobIdx;
|
||||
}
|
||||
|
||||
@@ -58,9 +58,9 @@ public:
|
||||
RigWellLogExtractor( const RigWellPath* wellpath, const std::string& wellCaseErrorMsgName );
|
||||
~RigWellLogExtractor() override;
|
||||
|
||||
const std::vector<double>& cellIntersectionMDs();
|
||||
const std::vector<double>& cellIntersectionTVDs();
|
||||
const std::vector<size_t>& intersectedCellsGlobIdx();
|
||||
const std::vector<double>& cellIntersectionMDs() const;
|
||||
const std::vector<double>& cellIntersectionTVDs() const;
|
||||
const std::vector<size_t>& intersectedCellsGlobIdx() const;
|
||||
|
||||
const RigWellPath* wellPathData() const;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user