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:
Jacob Støren
2013-03-12 10:03:25 +01:00
parent 94065f29ed
commit 9ab0a397ef
5 changed files with 41 additions and 49 deletions

View File

@@ -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;
};