///////////////////////////////////////////////////////////////////////////////// // // 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #pragma once #include "cafPdmField.h" #include #include #include class RigWellPath; namespace caf { class PdmOptionItemInfo; class PdmUiOrdering; } // namespace caf //================================================================================================== // //================================================================================================== class RiaSimWellBranchTools { public: static std::vector simulationWellBranches( const QString& simWellName, bool useAutoDetectionOfBranches ); static QList valueOptionsForBranchIndexField( const std::vector& simulationWellPaths ); static void appendSimWellBranchFieldsIfRequiredFromWellName( caf::PdmUiOrdering* uiOrdering, const QString& wellPathOrSimWellName, const caf::PdmField& branchDetectionField, const caf::PdmField& branchIndexField ); static void appendSimWellBranchFieldsIfRequiredFromSimWellName( caf::PdmUiOrdering* uiOrdering, const QString& simWellName, const caf::PdmField& branchDetectionField, const caf::PdmField& branchIndexField ); static int clampBranchIndex( const QString& simWellName, int branchIndexValue, bool branchDetection ); };