mirror of
https://github.com/OPM/ResInsight.git
synced 2026-08-27 13:47:12 -05:00
* Select top level summary cases and ensembles for reload Simplifies the summary case reloading process by removing the unnecessary `createAddressObjects` parameter and instead using the `showTreeNodes` flag to determine when to create address objects. This change optimizes the loading process, especially for ensembles, by avoiding the creation of addresses for all cases, which improves performance. It also moves the responsibility of building tree nodes into a dedicated function `buildTreeNodesIfRequired` which is only called when needed. * Remove obsolete parallel loop * Use zoomAll * Add updateConnectedEditors to make sure the tree nodes are updated correctly
105 lines
3.8 KiB
C++
105 lines
3.8 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2017 Statoil ASA
|
|
//
|
|
// ResInsight is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
//
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
|
// for more details.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "RimSummaryCalculationCollection.h"
|
|
|
|
#include "Summary/RiaSummaryTools.h"
|
|
|
|
#include "RifSummaryReaderInterface.h"
|
|
|
|
#include "RimObservedSummaryData.h"
|
|
#include "RimSummaryCalculation.h"
|
|
#include "RimSummaryCase.h"
|
|
#include "RimSummaryCaseMainCollection.h"
|
|
#include "RimSummaryEnsemble.h"
|
|
|
|
CAF_PDM_SOURCE_INIT( RimSummaryCalculationCollection, "RimSummaryCalculationCollection" );
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimSummaryCalculationCollection::RimSummaryCalculationCollection()
|
|
{
|
|
CAF_PDM_InitObject( "Calculation Collection", ":/chain.png" );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimSummaryCalculation* RimSummaryCalculationCollection::createCalculation() const
|
|
{
|
|
return new RimSummaryCalculation;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimSummaryCalculationCollection::updateDataDependingOnCalculations()
|
|
{
|
|
if ( calculations().empty() ) return;
|
|
|
|
// Refresh data sources tree
|
|
// Refresh meta data for all summary cases and rebuild AddressNodes in the summary tree
|
|
if ( auto summaryCaseCollection = RiaSummaryTools::summaryCaseMainCollection() )
|
|
{
|
|
auto summaryCases = summaryCaseCollection->allSummaryCases();
|
|
for ( RimSummaryCase* summaryCase : summaryCases )
|
|
{
|
|
if ( !summaryCase ) continue;
|
|
|
|
if ( summaryCase->showTreeNodes() )
|
|
{
|
|
if ( auto reader = summaryCase->summaryReader() )
|
|
{
|
|
reader->createAndSetAddresses();
|
|
}
|
|
summaryCase->onCalculationUpdated();
|
|
}
|
|
}
|
|
}
|
|
|
|
RimObservedDataCollection* observedDataCollection = RiaSummaryTools::observedDataCollection();
|
|
auto observedData = observedDataCollection->allObservedSummaryData();
|
|
for ( auto obs : observedData )
|
|
{
|
|
if ( !obs ) continue;
|
|
|
|
if ( auto reader = obs->summaryReader() )
|
|
{
|
|
reader->createAndSetAddresses();
|
|
obs->onCalculationUpdated();
|
|
}
|
|
}
|
|
|
|
if ( auto summaryCaseCollection = RiaSummaryTools::summaryCaseMainCollection() )
|
|
{
|
|
for ( auto ensemble : summaryCaseCollection->summaryEnsembles() )
|
|
{
|
|
ensemble->onCalculationUpdated();
|
|
}
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimSummaryCalculationCollection::rebuildCaseMetaData()
|
|
{
|
|
ensureValidCalculationIds();
|
|
updateDataDependingOnCalculations();
|
|
}
|