///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2016- 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #pragma once #include "RifEclipseSummaryAddress.h" #include "cafPdmChildArrayField.h" #include "cafPdmField.h" #include "cafPdmObject.h" #include "cafPdmProxyValueField.h" #include class RimSummaryCase; //================================================================================================== /// //================================================================================================== class EnsembleParameter { public: enum Type { TYPE_NONE, TYPE_NUMERIC, TYPE_TEXT }; QString name; Type type; std::vector values; double minValue; double maxValue; EnsembleParameter() : type(TYPE_NONE), minValue(std::numeric_limits::infinity()), maxValue(-std::numeric_limits::infinity()) { } bool isValid() const { return !name.isEmpty() && type != TYPE_NONE; } bool isNumeric() const { return type == TYPE_NUMERIC; } bool isText() const { return type == TYPE_TEXT; } }; //================================================================================================== /// //================================================================================================== class RimSummaryCaseCollection : public caf::PdmObject { CAF_PDM_HEADER_INIT; public: RimSummaryCaseCollection(); virtual ~RimSummaryCaseCollection(); void removeCase(RimSummaryCase* summaryCase); void addCase(RimSummaryCase* summaryCase); std::vector allSummaryCases() const; void setName(const QString& name); QString name() const; bool isEnsemble() const; void setAsEnsemble(bool isEnsemble); std::set calculateUnionOfSummaryAddresses() const; EnsembleParameter ensembleParameter(const QString& paramName) const; private: caf::PdmFieldHandle* userDescriptionField() override; void updateReferringCurveSets() const; QString nameAndItemCount() const; void updateIcon(); virtual void initAfterRead() override; virtual void fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue) override; private: caf::PdmChildArrayField m_cases; caf::PdmField m_name; caf::PdmProxyValueField m_nameAndItemCount; caf::PdmField m_isEnsemble; };