#4189 RFT Plot : Separate request based on PLT/RFT plot

This commit is contained in:
Magne Sjaastad
2019-03-12 07:48:04 +01:00
parent e72f57072c
commit 564ab1d84b
4 changed files with 12 additions and 5 deletions

View File

@@ -279,10 +279,14 @@ void RimWellPltPlot::updateWidgetTitleWindowTitle()
//--------------------------------------------------------------------------------------------------
std::set < RiaRftPltCurveDefinition > RimWellPltPlot::selectedCurveDefs() const
{
std::set<RifEclipseRftAddress::RftWellLogChannelType> channelTypesToUse{
RifEclipseRftAddress::ORAT, RifEclipseRftAddress::WRAT, RifEclipseRftAddress::GRAT};
return RimWellPlotTools::curveDefsFromTimesteps(RimWellPlotTools::simWellName(m_wellPathName),
m_selectedTimeSteps.v(),
false,
selectedSourcesExpanded());
selectedSourcesExpanded(),
channelTypesToUse);
}
//--------------------------------------------------------------------------------------------------