mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#5808 Summary Plot : Exclude *WCT vectors as cumulative vectors
This commit is contained in:
parent
2dc9d1c10b
commit
73c1f97431
@ -810,6 +810,13 @@ bool RifEclipseSummaryAddress::hasAccumulatedData() const
|
|||||||
}
|
}
|
||||||
|
|
||||||
QString qBaseName = baseQuantityName( quantityForInspection );
|
QString qBaseName = baseQuantityName( quantityForInspection );
|
||||||
|
|
||||||
|
if ( qBaseName.endsWith( "WCT" ) || qBaseName.endsWith( "WCTH" ) )
|
||||||
|
{
|
||||||
|
// https://github.com/OPM/ResInsight/issues/5808
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
return qBaseName.endsWith( "T" ) || qBaseName.endsWith( "TH" );
|
return qBaseName.endsWith( "T" ) || qBaseName.endsWith( "TH" );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user