#5808 Summary Plot : Exclude *WCT vectors as cumulative vectors

This commit is contained in:
Magne Sjaastad 2020-05-22 12:52:21 +02:00
parent 2dc9d1c10b
commit 73c1f97431

View File

@ -810,6 +810,13 @@ bool RifEclipseSummaryAddress::hasAccumulatedData() const
}
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" );
}