/*! \file stfinvblinddeconv.cc * \brief blind deconvolution in the frequency domain (implementation) * * ---------------------------------------------------------------------------- * * $Id$ * \author Thomas Forbriger * \date 06/05/2011 * * blind deconvolution in the frequency domain (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_STFINVBLINDDECONV_CC_VERSION \ "STFINV_STFINVBLINDDECONV_CC V1.0 " #define STFINV_STFINVBLINDDECONV_CC_CVSID \ "$Id$" #include #include namespace stfinv { const char* const STFEngineBlindDeconvolution::ID="fbd"; const char* const STFEngineBlindDeconvolution::description ="blind deconvolution in the frequency domain"; /*----------------------------------------------------------------------*/ stfinv::Waveform STFEngineBlindDeconvolution::run() { STFINV_abort("STFEngineBlindDeconvolution::run not yet implemented"); } // void STFEngineBlindDeconvolution::run() /*----------------------------------------------------------------------*/ void STFEngineBlindDeconvolution::help(std::ostream& os) const { STFEngineBlindDeconvolution::classhelp(os); } // void STFEngineBlindDeconvolution::help(std::ostream& os) const /*----------------------------------------------------------------------*/ void STFEngineBlindDeconvolution::classhelp(std::ostream& os) { os << "class STFEngineBlindDeconvolution (" << STFEngineBlindDeconvolution::ID << ")\n"; os << STFEngineBlindDeconvolution::description << "\n" << std::endl; os << "This class is not yet implemented." << std::endl; os << "Online help is not yet provided." << std::endl; } // void STFEngineBlindDeconvolution::classhelp(std::ostream& os) /*----------------------------------------------------------------------*/ const char* STFEngineBlindDeconvolution::name() const { return("STFEngineBlindDeconvolution"); } // const char const* STFEngineBlindDeconvolution::name() const } // namespace stfinv /* ----- END OF stfinvblinddeconv.cc ----- */