/*! \file stfinvbase.cc * \brief C++ interface and abstract base class (implementation) * * ---------------------------------------------------------------------------- * * $Id$ * \author Thomas Forbriger * \date 06/05/2011 * * C++ interface and abstract base class (implementation) * * 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 * - 06/05/2011 V1.0 Thomas Forbriger * * ============================================================================ */ #define STFINV_STFINVBASE_CC_VERSION \ "STFINV_STFINVBASE_CC V1.0 " #define STFINV_STFINVBASE_CC_CVSID \ "$Id$" #include namespace stfinv { void STFBaseEngine::checkconsistency() const { STFINV_abort("consistency check not yet implemented"); const int& n=Mstf.sampling.n; const double& dt=Mstf.sampling.dt; const double tolerance=1.e-4; } /*----------------------------------------------------------------------*/ void STFBaseEngine::help(std::ostream& os) const { os << "online help is not implemented for this engine" << std::endl; } /*----------------------------------------------------------------------*/ void STFBaseEngine::parseparameters(std::string parameters) { while (parameters.length()>0) { std::string value=stfinv::tools::clipstring(parameters,":"); std::string key =stfinv::tools::trimws(stfinv::tools::clipstring(value,"=")); if (value.length()==0) { this->Mparamap[key]="true"; } else { this->Mparamap[key]=value; } } // while (parameters.length()>0) } // void STFBaseEngine::parseparameters(std::string parameters) /*----------------------------------------------------------------------*/ //! \brief return the value of a parameters std::string STFBaseEngine::parameter(const std::string& key, const std::string& defvalue="false") const { } // std::string STFBaseEngine::parameter() /*----------------------------------------------------------------------*/ const char* STFBaseEngine::name() const { return("STFBaseEngine"); } // const char const* STFBaseEngine::name() const } // namespace stfinv /* ----- END OF stfinvbase.cc ----- */