mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Summary observed data
* #9966 Summary calculations: add support for imported vectors. * #9966 Summary Calculation: add support for imported and observed data. * Summary Address: avoid extra level in tree for imported data. * #9966 Update observed data when calculation is updated.
This commit is contained in:
committed by
GitHub
parent
26416c8937
commit
245d483036
@@ -24,6 +24,7 @@
|
|||||||
#include "RifEclipseSummaryAddress.h"
|
#include "RifEclipseSummaryAddress.h"
|
||||||
|
|
||||||
#include "RimMainPlotCollection.h"
|
#include "RimMainPlotCollection.h"
|
||||||
|
#include "RimObservedDataCollection.h"
|
||||||
#include "RimOilField.h"
|
#include "RimOilField.h"
|
||||||
#include "RimProject.h"
|
#include "RimProject.h"
|
||||||
#include "RimSummaryAddress.h"
|
#include "RimSummaryAddress.h"
|
||||||
@@ -81,6 +82,15 @@ RimSummaryCaseMainCollection* RiaSummaryTools::summaryCaseMainCollection()
|
|||||||
return summaryCaseMainCollection;
|
return summaryCaseMainCollection;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
RimObservedDataCollection* RiaSummaryTools::observedDataCollection()
|
||||||
|
{
|
||||||
|
RimProject* project = RimProject::current();
|
||||||
|
return project->activeOilField()->observedDataCollection();
|
||||||
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
/// Update the summary curves referencing this curve, as the curve is identified by the name
|
/// Update the summary curves referencing this curve, as the curve is identified by the name
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
|||||||
@@ -19,6 +19,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "RiaDateTimeDefines.h"
|
#include "RiaDateTimeDefines.h"
|
||||||
|
#include "RimObservedDataCollection.h"
|
||||||
|
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
|
||||||
@@ -32,6 +33,7 @@ class RimSummaryCrossPlotCollection;
|
|||||||
class RimSummaryCaseMainCollection;
|
class RimSummaryCaseMainCollection;
|
||||||
class RimSummaryCase;
|
class RimSummaryCase;
|
||||||
class RimSummaryCaseCollection;
|
class RimSummaryCaseCollection;
|
||||||
|
class RimObservedDataCollection;
|
||||||
|
|
||||||
class RifEclipseSummaryAddress;
|
class RifEclipseSummaryAddress;
|
||||||
|
|
||||||
@@ -52,6 +54,7 @@ public:
|
|||||||
static RimSummaryCrossPlotCollection* summaryCrossPlotCollection();
|
static RimSummaryCrossPlotCollection* summaryCrossPlotCollection();
|
||||||
static RimSummaryCaseMainCollection* summaryCaseMainCollection();
|
static RimSummaryCaseMainCollection* summaryCaseMainCollection();
|
||||||
static RimSummaryMultiPlotCollection* summaryMultiPlotCollection();
|
static RimSummaryMultiPlotCollection* summaryMultiPlotCollection();
|
||||||
|
static RimObservedDataCollection* observedDataCollection();
|
||||||
|
|
||||||
static std::vector<RimSummaryCase*> singleTopLevelSummaryCases();
|
static std::vector<RimSummaryCase*> singleTopLevelSummaryCases();
|
||||||
|
|
||||||
|
|||||||
@@ -411,11 +411,12 @@ RifEclipseSummaryAddress
|
|||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
///
|
///
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
RifEclipseSummaryAddress RifEclipseSummaryAddress::importedAddress( const std::string& vectorName )
|
RifEclipseSummaryAddress RifEclipseSummaryAddress::importedAddress( const std::string& vectorName, int calculationId )
|
||||||
{
|
{
|
||||||
RifEclipseSummaryAddress addr;
|
RifEclipseSummaryAddress addr;
|
||||||
addr.m_variableCategory = SUMMARY_IMPORTED;
|
addr.m_variableCategory = SUMMARY_IMPORTED;
|
||||||
addr.m_vectorName = vectorName;
|
addr.m_vectorName = vectorName;
|
||||||
|
addr.m_id = calculationId;
|
||||||
return addr;
|
return addr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -124,7 +124,7 @@ public:
|
|||||||
static RifEclipseSummaryAddress blockAddress( const std::string& vectorName, int i, int j, int k, int calculationId = -1 );
|
static RifEclipseSummaryAddress blockAddress( const std::string& vectorName, int i, int j, int k, int calculationId = -1 );
|
||||||
static RifEclipseSummaryAddress
|
static RifEclipseSummaryAddress
|
||||||
blockLgrAddress( const std::string& vectorName, const std::string& lgrName, int i, int j, int k, int calculationId = -1 );
|
blockLgrAddress( const std::string& vectorName, const std::string& lgrName, int i, int j, int k, int calculationId = -1 );
|
||||||
static RifEclipseSummaryAddress importedAddress( const std::string& vectorName );
|
static RifEclipseSummaryAddress importedAddress( const std::string& vectorName, int calculationId = -1 );
|
||||||
static RifEclipseSummaryAddress ensembleStatisticsAddress( const std::string& vectorName, const std::string& datavectorName );
|
static RifEclipseSummaryAddress ensembleStatisticsAddress( const std::string& vectorName, const std::string& datavectorName );
|
||||||
|
|
||||||
static std::string generateStringFromAddresses( const std::vector<RifEclipseSummaryAddress>& addressVector,
|
static std::string generateStringFromAddresses( const std::vector<RifEclipseSummaryAddress>& addressVector,
|
||||||
|
|||||||
@@ -27,6 +27,8 @@
|
|||||||
|
|
||||||
#include "RifSummaryReaderInterface.h"
|
#include "RifSummaryReaderInterface.h"
|
||||||
#include "RimDataSourceSteppingTools.h"
|
#include "RimDataSourceSteppingTools.h"
|
||||||
|
#include "RimObservedDataCollection.h"
|
||||||
|
#include "RimObservedSummaryData.h"
|
||||||
#include "RimProject.h"
|
#include "RimProject.h"
|
||||||
#include "RimSummaryAddress.h"
|
#include "RimSummaryAddress.h"
|
||||||
#include "RimSummaryCalculationCollection.h"
|
#include "RimSummaryCalculationCollection.h"
|
||||||
@@ -267,7 +269,8 @@ void RimSummaryCalculation::substituteVariables( std::vector<SummaryCalculationV
|
|||||||
newValue = QString::fromStdString( address.blockAsString() );
|
newValue = QString::fromStdString( address.blockAsString() );
|
||||||
isHandledBySteppingTools = true;
|
isHandledBySteppingTools = true;
|
||||||
}
|
}
|
||||||
else if ( category == RifEclipseSummaryAddress::SUMMARY_MISC || category == RifEclipseSummaryAddress::SUMMARY_FIELD )
|
else if ( category == RifEclipseSummaryAddress::SUMMARY_MISC || category == RifEclipseSummaryAddress::SUMMARY_FIELD ||
|
||||||
|
category == RifEclipseSummaryAddress::SUMMARY_IMPORTED )
|
||||||
{
|
{
|
||||||
// No need to do anything for these types
|
// No need to do anything for these types
|
||||||
return;
|
return;
|
||||||
@@ -412,6 +415,15 @@ void RimSummaryCalculation::updateDependentObjects()
|
|||||||
summaryCase->refreshMetaData();
|
summaryCase->refreshMetaData();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
RimObservedDataCollection* observedDataCollection = RiaSummaryTools::observedDataCollection();
|
||||||
|
auto observedData = observedDataCollection->allObservedSummaryData();
|
||||||
|
for ( auto obs : observedData )
|
||||||
|
{
|
||||||
|
obs->createSummaryReaderInterface();
|
||||||
|
obs->createRftReaderInterface();
|
||||||
|
obs->refreshMetaData();
|
||||||
|
}
|
||||||
|
|
||||||
auto summaryCaseCollections = summaryCaseCollection->summaryCaseCollections();
|
auto summaryCaseCollections = summaryCaseCollection->summaryCaseCollections();
|
||||||
for ( RimSummaryCaseCollection* summaryCaseCollection : summaryCaseCollections )
|
for ( RimSummaryCaseCollection* summaryCaseCollection : summaryCaseCollections )
|
||||||
{
|
{
|
||||||
@@ -559,6 +571,10 @@ std::vector<RimSummaryCalculationAddress>
|
|||||||
addresses.push_back( RimSummaryCalculationAddress( RifEclipseSummaryAddress::regionToRegionAddress( name, r1, r2, m_id ) ) );
|
addresses.push_back( RimSummaryCalculationAddress( RifEclipseSummaryAddress::regionToRegionAddress( name, r1, r2, m_id ) ) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if ( category == RifEclipseSummaryAddress::SUMMARY_IMPORTED )
|
||||||
|
{
|
||||||
|
addresses.push_back( RimSummaryCalculationAddress( RifEclipseSummaryAddress::importedAddress( name, m_id ) ) );
|
||||||
|
}
|
||||||
|
|
||||||
return addresses;
|
return addresses;
|
||||||
}
|
}
|
||||||
@@ -603,6 +619,10 @@ RimSummaryCalculationAddress RimSummaryCalculation::singleAddressesForCategory(
|
|||||||
{
|
{
|
||||||
return RifEclipseSummaryAddress::regionToRegionAddress( name, address.regionNumber(), address.regionNumber2(), m_id );
|
return RifEclipseSummaryAddress::regionToRegionAddress( name, address.regionNumber(), address.regionNumber2(), m_id );
|
||||||
}
|
}
|
||||||
|
else if ( category == RifEclipseSummaryAddress::SUMMARY_IMPORTED )
|
||||||
|
{
|
||||||
|
return RifEclipseSummaryAddress::importedAddress( name, m_id );
|
||||||
|
}
|
||||||
|
|
||||||
return RifEclipseSummaryAddress();
|
return RifEclipseSummaryAddress();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,7 +23,13 @@
|
|||||||
#include "RifColumnBasedUserDataParser.h"
|
#include "RifColumnBasedUserDataParser.h"
|
||||||
#include "RifCsvUserData.h"
|
#include "RifCsvUserData.h"
|
||||||
#include "RifKeywordVectorUserData.h"
|
#include "RifKeywordVectorUserData.h"
|
||||||
|
#include "RifMultipleSummaryReaders.h"
|
||||||
#include "RifSummaryReaderInterface.h"
|
#include "RifSummaryReaderInterface.h"
|
||||||
|
#include "RifSummaryReaderMultipleFiles.h"
|
||||||
|
|
||||||
|
#include "RimCalculatedSummaryCurveReader.h"
|
||||||
|
#include "RimProject.h"
|
||||||
|
#include "RimSummaryCalculationCollection.h"
|
||||||
|
|
||||||
#include "cafUtils.h"
|
#include "cafUtils.h"
|
||||||
|
|
||||||
@@ -57,7 +63,7 @@ RimCsvUserData::~RimCsvUserData()
|
|||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
void RimCsvUserData::createSummaryReaderInterface()
|
void RimCsvUserData::createSummaryReaderInterface()
|
||||||
{
|
{
|
||||||
m_summaryReader = nullptr;
|
m_multiSummaryReader = nullptr;
|
||||||
|
|
||||||
if ( caf::Utils::fileExists( this->summaryHeaderFilename() ) )
|
if ( caf::Utils::fileExists( this->summaryHeaderFilename() ) )
|
||||||
{
|
{
|
||||||
@@ -65,12 +71,16 @@ void RimCsvUserData::createSummaryReaderInterface()
|
|||||||
if ( csvUserData->parse( this->summaryHeaderFilename(), m_parseOptions->parseOptions(), &m_errorText ) )
|
if ( csvUserData->parse( this->summaryHeaderFilename(), m_parseOptions->parseOptions(), &m_errorText ) )
|
||||||
{
|
{
|
||||||
m_summaryReader = csvUserData;
|
m_summaryReader = csvUserData;
|
||||||
|
|
||||||
|
m_multiSummaryReader = new RifMultipleSummaryReaders;
|
||||||
|
m_multiSummaryReader->addReader( m_summaryReader.p() );
|
||||||
|
|
||||||
|
RimSummaryCalculationCollection* calcColl = RimProject::current()->calculationCollection();
|
||||||
|
m_calculatedSummaryReader = new RifCalculatedSummaryCurveReader( calcColl, this );
|
||||||
|
|
||||||
|
m_multiSummaryReader->addReader( m_calculatedSummaryReader.p() );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
m_summaryReader = nullptr;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
@@ -78,11 +88,11 @@ void RimCsvUserData::createSummaryReaderInterface()
|
|||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
RifSummaryReaderInterface* RimCsvUserData::summaryReader()
|
RifSummaryReaderInterface* RimCsvUserData::summaryReader()
|
||||||
{
|
{
|
||||||
if ( m_summaryReader.isNull() )
|
if ( m_multiSummaryReader.isNull() )
|
||||||
{
|
{
|
||||||
createSummaryReaderInterface();
|
createSummaryReaderInterface();
|
||||||
}
|
}
|
||||||
return m_summaryReader.p();
|
return m_multiSummaryReader.p();
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
|||||||
@@ -28,6 +28,8 @@
|
|||||||
#include "cvfObject.h"
|
#include "cvfObject.h"
|
||||||
|
|
||||||
class RifSummaryReaderInterface;
|
class RifSummaryReaderInterface;
|
||||||
|
class RifCalculatedSummaryCurveReader;
|
||||||
|
class RifMultipleSummaryReaders;
|
||||||
|
|
||||||
//==================================================================================================
|
//==================================================================================================
|
||||||
//
|
//
|
||||||
@@ -51,5 +53,7 @@ public:
|
|||||||
private:
|
private:
|
||||||
caf::PdmChildField<RicPasteAsciiDataToSummaryPlotFeatureUi*> m_parseOptions;
|
caf::PdmChildField<RicPasteAsciiDataToSummaryPlotFeatureUi*> m_parseOptions;
|
||||||
cvf::ref<RifSummaryReaderInterface> m_summaryReader;
|
cvf::ref<RifSummaryReaderInterface> m_summaryReader;
|
||||||
|
cvf::ref<RifCalculatedSummaryCurveReader> m_calculatedSummaryReader;
|
||||||
|
cvf::ref<RifMultipleSummaryReaders> m_multiSummaryReader;
|
||||||
QString m_errorText;
|
QString m_errorText;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -24,8 +24,13 @@
|
|||||||
#include "RifColumnBasedUserDataParser.h"
|
#include "RifColumnBasedUserDataParser.h"
|
||||||
#include "RifKeywordVectorParser.h"
|
#include "RifKeywordVectorParser.h"
|
||||||
#include "RifKeywordVectorUserData.h"
|
#include "RifKeywordVectorUserData.h"
|
||||||
|
#include "RifMultipleSummaryReaders.h"
|
||||||
#include "RifSummaryReaderInterface.h"
|
#include "RifSummaryReaderInterface.h"
|
||||||
|
|
||||||
|
#include "RimCalculatedSummaryCurveReader.h"
|
||||||
|
#include "RimProject.h"
|
||||||
|
#include "RimSummaryCalculationCollection.h"
|
||||||
|
|
||||||
#include "cafUtils.h"
|
#include "cafUtils.h"
|
||||||
|
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
@@ -53,7 +58,8 @@ RimObservedEclipseUserData::~RimObservedEclipseUserData()
|
|||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
void RimObservedEclipseUserData::createSummaryReaderInterface()
|
void RimObservedEclipseUserData::createSummaryReaderInterface()
|
||||||
{
|
{
|
||||||
m_summeryReader = nullptr;
|
m_multiSummaryReader = nullptr;
|
||||||
|
m_summaryReader = nullptr;
|
||||||
|
|
||||||
if ( caf::Utils::fileExists( this->summaryHeaderFilename() ) )
|
if ( caf::Utils::fileExists( this->summaryHeaderFilename() ) )
|
||||||
{
|
{
|
||||||
@@ -74,7 +80,7 @@ void RimObservedEclipseUserData::createSummaryReaderInterface()
|
|||||||
RifKeywordVectorUserData* keywordVectorUserData = new RifKeywordVectorUserData();
|
RifKeywordVectorUserData* keywordVectorUserData = new RifKeywordVectorUserData();
|
||||||
if ( keywordVectorUserData->parse( fileContents, customWellName() ) )
|
if ( keywordVectorUserData->parse( fileContents, customWellName() ) )
|
||||||
{
|
{
|
||||||
m_summeryReader = keywordVectorUserData;
|
m_summaryReader = keywordVectorUserData;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -82,13 +88,20 @@ void RimObservedEclipseUserData::createSummaryReaderInterface()
|
|||||||
RifColumnBasedUserData* columnBaseUserData = new RifColumnBasedUserData();
|
RifColumnBasedUserData* columnBaseUserData = new RifColumnBasedUserData();
|
||||||
if ( columnBaseUserData->parse( fileContents, &m_errorText ) )
|
if ( columnBaseUserData->parse( fileContents, &m_errorText ) )
|
||||||
{
|
{
|
||||||
m_summeryReader = columnBaseUserData;
|
m_summaryReader = columnBaseUserData;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else
|
if ( m_summaryReader.notNull() )
|
||||||
{
|
{
|
||||||
m_summeryReader = nullptr;
|
m_multiSummaryReader = new RifMultipleSummaryReaders;
|
||||||
|
m_multiSummaryReader->addReader( m_summaryReader.p() );
|
||||||
|
|
||||||
|
RimSummaryCalculationCollection* calcColl = RimProject::current()->calculationCollection();
|
||||||
|
m_calculatedSummaryReader = new RifCalculatedSummaryCurveReader( calcColl, this );
|
||||||
|
|
||||||
|
m_multiSummaryReader->addReader( m_calculatedSummaryReader.p() );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -97,11 +110,11 @@ void RimObservedEclipseUserData::createSummaryReaderInterface()
|
|||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
RifSummaryReaderInterface* RimObservedEclipseUserData::summaryReader()
|
RifSummaryReaderInterface* RimObservedEclipseUserData::summaryReader()
|
||||||
{
|
{
|
||||||
if ( m_summeryReader.isNull() )
|
if ( m_multiSummaryReader.isNull() )
|
||||||
{
|
{
|
||||||
createSummaryReaderInterface();
|
createSummaryReaderInterface();
|
||||||
}
|
}
|
||||||
return m_summeryReader.p();
|
return m_multiSummaryReader.p();
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
|||||||
@@ -25,6 +25,8 @@
|
|||||||
#include "cvfObject.h"
|
#include "cvfObject.h"
|
||||||
|
|
||||||
class RifSummaryReaderInterface;
|
class RifSummaryReaderInterface;
|
||||||
|
class RifCalculatedSummaryCurveReader;
|
||||||
|
class RifMultipleSummaryReaders;
|
||||||
|
|
||||||
//==================================================================================================
|
//==================================================================================================
|
||||||
//
|
//
|
||||||
@@ -44,6 +46,8 @@ public:
|
|||||||
QString errorMessagesFromReader() override;
|
QString errorMessagesFromReader() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
cvf::ref<RifSummaryReaderInterface> m_summeryReader;
|
cvf::ref<RifSummaryReaderInterface> m_summaryReader;
|
||||||
QString m_errorText;
|
cvf::ref<RifCalculatedSummaryCurveReader> m_calculatedSummaryReader;
|
||||||
|
cvf::ref<RifMultipleSummaryReaders> m_multiSummaryReader;
|
||||||
|
QString m_errorText;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -289,7 +289,7 @@ void RimSummaryAddressCollection::updateFolderStructure( const std::set<RifEclip
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_IMPORTED:
|
case RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_IMPORTED:
|
||||||
imported->addToSubfolder( QString::fromStdString( address.itemUiText() ), CollectionContentType::IMPORTED, address, caseId, ensembleId );
|
imported->addAddress( address, caseId, ensembleId );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|||||||
@@ -1404,8 +1404,10 @@ void RiuSummaryVectorSelectionUi::appendOptionItemsForCategories( QList<caf::Pdm
|
|||||||
sortedCategoriesForUi.push_back( RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_WELL_LGR );
|
sortedCategoriesForUi.push_back( RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_WELL_LGR );
|
||||||
sortedCategoriesForUi.push_back( RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_WELL_COMPLETION_LGR );
|
sortedCategoriesForUi.push_back( RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_WELL_COMPLETION_LGR );
|
||||||
sortedCategoriesForUi.push_back( RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_BLOCK_LGR );
|
sortedCategoriesForUi.push_back( RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_BLOCK_LGR );
|
||||||
sortedCategoriesForUi.push_back( RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_IMPORTED );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sortedCategoriesForUi.push_back( RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_IMPORTED );
|
||||||
|
|
||||||
// NB SUMMARY_ENSEMBLE_STATISTICS is intentionally excluded
|
// NB SUMMARY_ENSEMBLE_STATISTICS is intentionally excluded
|
||||||
// categoriesForUiDisplay.push_back(RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_ENSEMBLE_STATISTICS);
|
// categoriesForUiDisplay.push_back(RifEclipseSummaryAddress::SummaryVarCategory::SUMMARY_ENSEMBLE_STATISTICS);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user