mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-10 08:03:05 -06:00
62ce2b18e0
* Avoid accessing nullptr * remove unused function * Allow RFT data from single summary case to be used in RFT plots * #9736 Support horizontal plotting of LAS curves
85 lines
3.4 KiB
C++
85 lines
3.4 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.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
#include "RiaDateTimeDefines.h"
|
|
|
|
#include <QString>
|
|
|
|
#include <vector>
|
|
|
|
class RimSummaryPlot;
|
|
class RimSummaryMultiPlot;
|
|
class RimSummaryMultiPlotCollection;
|
|
class RimSummaryCrossPlot;
|
|
class RimSummaryCrossPlotCollection;
|
|
class RimSummaryCaseMainCollection;
|
|
class RimSummaryCase;
|
|
class RimSummaryCaseCollection;
|
|
|
|
class RifEclipseSummaryAddress;
|
|
|
|
class QStringList;
|
|
|
|
namespace caf
|
|
{
|
|
class PdmObject;
|
|
class PdmOptionItemInfo;
|
|
} // namespace caf
|
|
|
|
//==================================================================================================
|
|
//
|
|
//==================================================================================================
|
|
class RiaSummaryTools
|
|
{
|
|
public:
|
|
static RimSummaryCrossPlotCollection* summaryCrossPlotCollection();
|
|
static RimSummaryCaseMainCollection* summaryCaseMainCollection();
|
|
static RimSummaryMultiPlotCollection* summaryMultiPlotCollection();
|
|
|
|
static std::vector<RimSummaryCase*> singleTopLevelSummaryCases();
|
|
|
|
static void notifyCalculatedCurveNameHasChanged( int calculationId, const QString& currentCurveName );
|
|
|
|
static RimSummaryPlot* parentSummaryPlot( caf::PdmObject* object );
|
|
static RimSummaryMultiPlot* parentSummaryMultiPlot( caf::PdmObject* object );
|
|
static RimSummaryMultiPlotCollection* parentSummaryPlotCollection( caf::PdmObject* object );
|
|
|
|
static RimSummaryCrossPlot* parentCrossPlot( caf::PdmObject* object );
|
|
static RimSummaryCrossPlotCollection* parentCrossPlotCollection( caf::PdmObject* object );
|
|
static bool isSummaryCrossPlot( const RimSummaryPlot* plot );
|
|
|
|
static bool hasAccumulatedData( const RifEclipseSummaryAddress& address );
|
|
static void getSummaryCasesAndAddressesForCalculation( int id,
|
|
std::vector<RimSummaryCase*>& cases,
|
|
std::vector<RifEclipseSummaryAddress>& addresses );
|
|
|
|
static std::pair<std::vector<time_t>, std::vector<double>>
|
|
resampledValuesForPeriod( const RifEclipseSummaryAddress& address,
|
|
const std::vector<time_t>& timeSteps,
|
|
std::vector<double>& values,
|
|
RiaDefines::DateTimePeriod period );
|
|
|
|
static RimSummaryCase* summaryCaseById( int caseId );
|
|
static RimSummaryCaseCollection* ensembleById( int ensembleId );
|
|
|
|
static QList<caf::PdmOptionItemInfo> optionsForAllSummaryCases();
|
|
static QList<caf::PdmOptionItemInfo> optionsForSummaryCases( const std::vector<RimSummaryCase*>& cases );
|
|
};
|