#1842 RFT Plot. Grid data curves

This commit is contained in:
Bjørn Erik Jensen
2017-10-04 14:36:33 +02:00
parent d090f8ac2d
commit 883b815fac
4 changed files with 247 additions and 77 deletions

View File

@@ -306,8 +306,10 @@ void RimWellLogExtractionCurve::onLoadDataAndUpdate(bool updateParentPlot)
updateGeneratedSimulationWellpath();
clampBranchIndex();
RimWellLogPlotCollection* wellLogCollection;
this->firstAncestorOrThisOfTypeAsserted(wellLogCollection);
RimMainPlotCollection* mainPlotCollection;
this->firstAncestorOrThisOfTypeAsserted(mainPlotCollection);
RimWellLogPlotCollection* wellLogCollection = mainPlotCollection->wellLogPlotCollection();
cvf::ref<RigEclipseWellLogExtractor> eclExtractor;
if ( m_trajectoryType == WELL_PATH )
@@ -906,3 +908,19 @@ int RimWellLogExtractionCurve::currentTimeStep() const
{
return m_timeStep();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimWellLogExtractionCurve::setCurrentTimeStep(int timeStep)
{
m_timeStep = timeStep;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimWellLogExtractionCurve::setEclipseResultDefinition(const RimEclipseResultDefinition* def)
{
m_eclipseResultDefinition->simpleCopy(def);
}