#3549 Temporary LGR : Delete cached extractors and redraw curves

This commit is contained in:
Magne Sjaastad
2018-10-24 12:59:43 +02:00
parent 6445ab05fe
commit 166d7dcb6c
10 changed files with 61 additions and 3 deletions

View File

@@ -134,6 +134,26 @@ RigGeoMechWellLogExtractor* RimWellLogPlotCollection::findOrCreateExtractor(RimW
return extractor.p();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimWellLogPlotCollection::reloadAllPlots()
{
for (const auto& w : wellLogPlots())
{
w->loadDataAndUpdate();
}
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimWellLogPlotCollection::deleteAllExtractors()
{
m_extractors.clear();
m_geomExtractors.clear();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------