/* This file is part of Lemma, a geophysical modelling and inversion API */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /** @file @date 09/23/2013 11:05:11 AM @version $Id$ @author Trevor Irons (ti) @email Trevor.Irons@xri-geo.com @copyright Copyright (c) 2013, XRI Geophysics, LLC @copyright Copyright (c) 2013, Trevor Irons **/ #ifndef RECTILINEARGRIDREADER_INC #define RECTILINEARGRIDREADER_INC #include "GridReader.h" #include "RectilinearGrid.h" #include "ASCIIParser.h" namespace Lemma { /** @class \ingroup LemmaCore \brief Base Class for rectilinear grid reader data files \details \todo this set of classes is deprecated, use serialize methods! */ class RectilinearGridReader : public GridReader { friend std::ostream &operator<<(std::ostream &stream, const RectilinearGridReader &ob); public: // ==================== LIFECYCLE ======================= /** * Factory method for generating concrete class. * @return a std::shared_ptr of type RectilinearGridReader */ static std::shared_ptr< RectilinearGridReader > NewSP(); // ==================== OPERATORS ======================= // ==================== OPERATIONS ======================= /** Reads a .mod file, a simple representation of the grid. These files have the following format: @verbatim nx ny nz // number of cells in x, y, and z ox oy oz // grid offset of top SW corner hx[0] hx[1] ... hx[nx-1] // grid cell spacing in x, from 0 to nx-1 hy[0] hy[1] ... hy[ny-1] // grid cell spacing in y, from 0 to ny-1 hz[0] hz[1] ... hz[nz-1] // grid cell spacing in z, from 0 to nz-1 // c++ style (//) comments are allowed anywhere, c-style are not @endverbatim */ void ReadASCIIGridFile( const std::string& name ); // ==================== ACCESS ======================= /** * Accessor method for the underlying RectilinearGrid class constructed * from the input file. */ std::shared_ptr GetGrid(); // ==================== INQUIRY ======================= /** Returns the name of the underlying class, similiar to Python's type */ virtual inline std::string GetName() const { return this->CName; } protected: // ==================== LIFECYCLE ======================= /** Default protected constructor, use New */ RectilinearGridReader ( ); /** Default protected constructor, use Delete */ ~RectilinearGridReader (); private: // ==================== DATA MEMBERS ========================= /** ASCII string representation of the class name */ static constexpr auto CName = "RectilinearGridReader"; /** Object holding constructed Grid */ std::shared_ptr rGrid; /** Performs actual file parsing */ std::shared_ptr Parser; }; // ----- end of class RectilinearGridReader ----- } // ----- end of Lemma name ----- #endif // ----- #ifndef RECTILINEARGRIDREADER_INC -----