///////////////////////////////////////////////////////////////////////////////// // // 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #pragma once #include "RimCommandRouter.h" #include "cafPdmField.h" #include "cvfVector3.h" #include #include #include //================================================================================================== /// //================================================================================================== class RimcCommandRouter_extractSurfaces : public RimCommandRouterMethod { CAF_PDM_HEADER_INIT; public: RimcCommandRouter_extractSurfaces( caf::PdmObjectHandle* self ); caf::PdmObjectHandle* execute() override; static bool readMinMaxLayerFromGridFile( const QString& gridFileName, int& minK, int& maxK ); static std::pair extractSurfaces( const QString& gridModelFileName, const std::vector& layers, int minI = -1, int maxI = -1, int minJ = -1, int maxJ = -1 ); private: caf::PdmField m_gridModelFilename; caf::PdmField> m_layers; caf::PdmField m_minimumI; caf::PdmField m_maximumI; caf::PdmField m_minimumJ; caf::PdmField m_maximumJ; };