/*! \file stfinvidentity.h * \brief just find a scaling factor (prototypes) * * ---------------------------------------------------------------------------- * * $Id$ * \author Thomas Forbriger * \date 07/05/2011 * * just find a scaling factor (prototypes) * * Copyright (c) 2011 by Thomas Forbriger (BFO Schiltach) * * ---- * This program 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 2 of the License, or * (at your option) any later version. * * This program 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 for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * ---- * * * REVISIONS and CHANGES * - 07/05/2011 V1.0 Thomas Forbriger * * ============================================================================ */ // include guard #ifndef STFINV_STFINVIDENTITY_H_VERSION #define STFINV_STFINVIDENTITY_H_VERSION \ "STFINV_STFINVIDENTITY_H V1.0 " #define STFINV_STFINVIDENTITY_H_CVSID \ "$Id$" #include namespace stfinv { /*! \brief Engine to apply a scalar factor * \ingroup engines */ class STFEngineIdentity: public stfinv::STFBaseEngine { public: //! \brief typedef to refer to base class typedef stfinv::STFBaseEngine Tbase; //! \brief ID used to select thsi engine static const char* const ID; //! \brief short description of this engine static const char* const description; /*! \brief Constructor. */ STFEngineIdentity(const stfinv::Tvectoroftriples& triples, const stfinv::Waveform& stf, const std::string& parameters) :Tbase(triples, stf, parameters) { } //! \brief abstract base requires virtual destructor virtual ~STFEngineIdentity() { } //! \brief Start engine and return source time function. virtual stfinv::Waveform run(); //! \brief print online help virtual void help(std::ostream& os=std::cout) const; //! \brief print online help static void classhelp(std::ostream& os=std::cout); //! \brief return name of engine virtual const char* name() const; protected: //! \brief set default values in Mparamap virtual void setdefaults() { } //! \brief initialize work space virtual void initialize() { } }; // class STFEngineIdentity } // namespace stfinv #endif // STFINV_STFINVIDENTITY_H_VERSION (includeguard) /* ----- END OF stfinvidentity.h ----- */