///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2018- 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #pragma once #include "cafPdmChildField.h" #include "cafPdmObject.h" class RimOilField; class RimValveTemplateCollection; class RimFractureTemplateCollection; class RimStimPlanModelTemplateCollection; class RimEnsembleFractureStatisticsCollection; class RimCompletionTemplateCollection : public caf::PdmObject { CAF_PDM_HEADER_INIT; public: RimCompletionTemplateCollection(); ~RimCompletionTemplateCollection() override; RimFractureTemplateCollection* fractureTemplateCollection(); const RimFractureTemplateCollection* fractureTemplateCollection() const; RimStimPlanModelTemplateCollection* stimPlanModelTemplateCollection(); const RimStimPlanModelTemplateCollection* stimPlanModelTemplateCollection() const; RimValveTemplateCollection* valveTemplateCollection(); const RimValveTemplateCollection* valveTemplateCollection() const; RimEnsembleFractureStatisticsCollection* fractureGroupStatisticsCollection(); const RimEnsembleFractureStatisticsCollection* fractureGroupStatisticsCollection() const; void setDefaultUnitSystemBasedOnLoadedCases(); void loadAndUpdateData(); private: friend class RimOilField; void setFractureTemplateCollection( RimFractureTemplateCollection* fractureTemplateCollection ); caf::PdmChildField m_fractureTemplates; caf::PdmChildField m_valveTemplates; caf::PdmChildField m_stimPlanModelTemplates; caf::PdmChildField m_fractureGroupStatisticsCollection; protected: void defineUiTreeOrdering( caf::PdmUiTreeOrdering& uiTreeOrdering, QString uiConfigName = "" ) override; };