#3473 LGR Export. Support for exporting a single LGR for per well. Warning if completions intersect with existing LGR

This commit is contained in:
Bjørn Erik Jensen
2018-10-10 09:04:14 +02:00
parent 88c4aa2591
commit c7f6c74869
4 changed files with 224 additions and 64 deletions

View File

@@ -131,3 +131,11 @@ QString RigCompletionDataGridCell::lgrName() const
{
return m_lgrName;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
bool RigCompletionDataGridCell::isMainGridCell() const
{
return m_lgrName.isEmpty();
}

View File

@@ -46,6 +46,8 @@ public:
QString lgrName() const;
bool isMainGridCell() const;
private:
size_t m_globalCellIndex;
QString m_lgrName;