#1776 CVS data parser. Made parsing more generic. Handle error result columns

This commit is contained in:
Bjørn Erik Jensen
2018-05-23 12:26:37 +02:00
parent 8f5c3436ce
commit 22c71b60dd
16 changed files with 78 additions and 13 deletions

View File

@@ -144,6 +144,7 @@ RifEclipseSummaryAddress RifReaderObservedData::address(const QString& quantity,
int cellJ(-1);
int cellK(-1);
int aquiferNumber(-1);
bool isErrorResult(false);
switch (summaryCategory)
{
@@ -169,7 +170,8 @@ RifEclipseSummaryAddress RifReaderObservedData::address(const QString& quantity,
wellSegmentNumber,
lgrName,
cellI, cellJ, cellK,
aquiferNumber);
aquiferNumber,
isErrorResult);
}
//--------------------------------------------------------------------------------------------------