#1841 Curve creator. Improved case selection. Case grouping

This commit is contained in:
Bjørn Erik Jensen
2017-09-18 14:49:31 +02:00
parent 3c3c8fe44b
commit 6892273188
6 changed files with 92 additions and 10 deletions

View File

@@ -630,6 +630,18 @@ void RimProject::createDisplayModelAndRedrawAllViews()
}
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimProject::allOilFields(std::vector<RimOilField*>& oilFields)
{
oilFields.clear();
for (const auto& oilField : this->oilFields)
{
oilFields.push_back(oilField);
}
}
//--------------------------------------------------------------------------------------------------
/// Currently there will be only one oil field in Resinsight, so return hardcoded first oil field
/// from the RimOilField collection.