mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Removed the m_isWellCell member from RigCell, to make the grid data completely independent of case / result data
p4#: 20859
This commit is contained in:
@@ -40,13 +40,9 @@ public:
|
||||
bool isInvalid() const { return m_isInvalid; }
|
||||
void setInvalid( bool val ) { m_isInvalid = val; }
|
||||
|
||||
bool isWellCell() const { return m_isWellCell; }
|
||||
void setAsWellCell(bool isWellCell) { m_isWellCell = isWellCell; }
|
||||
|
||||
size_t cellIndex() const { return m_cellIndex; }
|
||||
void setCellIndex(size_t val) { m_cellIndex = val; }
|
||||
|
||||
|
||||
RigLocalGrid* subGrid() const { return m_subGrid; }
|
||||
void setSubGrid(RigLocalGrid* subGrid) { m_subGrid = subGrid; }
|
||||
|
||||
@@ -82,7 +78,4 @@ private:
|
||||
bool m_cellFaceFaults[6];
|
||||
|
||||
bool m_isInvalid;
|
||||
|
||||
// Result case specific data
|
||||
bool m_isWellCell;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user