ResInsight/ApplicationLibCode/ProjectDataModel/Summary/RimObservedEclipseUserData.h
Kristian Bendiksen 245d483036
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.
2023-03-15 13:39:57 +01:00

54 lines
1.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.
//
/////////////////////////////////////////////////////////////////////////////////
#pragma once
#include "RimObservedSummaryData.h"
#include "cafPdmField.h"
#include "cafPdmObject.h"
#include "cvfObject.h"
class RifSummaryReaderInterface;
class RifCalculatedSummaryCurveReader;
class RifMultipleSummaryReaders;
//==================================================================================================
//
//==================================================================================================
class RimObservedEclipseUserData : public RimObservedSummaryData
{
CAF_PDM_HEADER_INIT;
public:
RimObservedEclipseUserData();
~RimObservedEclipseUserData() override;
void createSummaryReaderInterface() override;
RifSummaryReaderInterface* summaryReader() override;
QString errorMessagesFromReader() override;
private:
cvf::ref<RifSummaryReaderInterface> m_summaryReader;
cvf::ref<RifCalculatedSummaryCurveReader> m_calculatedSummaryReader;
cvf::ref<RifMultipleSummaryReaders> m_multiSummaryReader;
QString m_errorText;
};