2022-01-06 15:18:09 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// Copyright (C) 2021- Equinor 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 <vector>
|
|
|
|
|
|
|
|
|
|
class RimSummaryCurve;
|
|
|
|
|
class RimEnsembleCurveSet;
|
|
|
|
|
|
|
|
|
|
class RimSummaryDataSourceStepping
|
|
|
|
|
{
|
|
|
|
|
public:
|
2022-06-03 15:54:00 +02:00
|
|
|
enum class SourceSteppingDimension
|
|
|
|
|
{
|
|
|
|
|
SUMMARY_CASE,
|
|
|
|
|
ENSEMBLE,
|
|
|
|
|
WELL,
|
|
|
|
|
GROUP,
|
2023-08-14 11:18:10 +02:00
|
|
|
NETWORK,
|
2022-06-03 15:54:00 +02:00
|
|
|
REGION,
|
|
|
|
|
VECTOR,
|
|
|
|
|
BLOCK,
|
2023-05-30 15:56:19 +02:00
|
|
|
AQUIFER,
|
|
|
|
|
WELL_SEGMENT
|
2022-06-03 15:54:00 +02:00
|
|
|
};
|
|
|
|
|
|
2022-01-06 15:18:09 +01:00
|
|
|
public:
|
2023-11-01 08:15:21 +01:00
|
|
|
virtual std::vector<RimSummaryCurve*> curvesForStepping() const = 0;
|
|
|
|
|
virtual std::vector<RimSummaryCurve*> allCurves() const = 0;
|
|
|
|
|
virtual std::vector<RimEnsembleCurveSet*> curveSets() const = 0;
|
2022-01-06 15:18:09 +01:00
|
|
|
};
|