12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* 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
- @author Trevor Irons
- @date 01/02/2010
- @version $Id: hankeltransform.cpp 193 2014-11-10 23:51:41Z tirons $
- **/
-
- #include "HankelTransform.h"
-
- namespace Lemma {
-
- std::ostream &operator << (std::ostream &stream, const HankelTransform &ob) {
- stream << ob.Serialize() << "\n";
- return stream;
- }
-
- HankelTransform::HankelTransform( const ctor_key& key ) : LemmaObject( key ) {
- }
-
- HankelTransform::HankelTransform( const YAML::Node& node, const ctor_key& key ) : LemmaObject( node, key ) {
- }
-
- HankelTransform::~HankelTransform( ) {
- }
-
- void HankelTransform::ComputeRelated(const Real& rho, std::shared_ptr<KernelEM1DBase> Kernel) {
- }
-
- void HankelTransform::ComputeRelated(const Real& rho, std::vector< std::shared_ptr<KernelEM1DBase> > KernelVec) {
- }
-
- void HankelTransform::ComputeRelated(const Real& rho, std::shared_ptr<KernelEM1DManager> KernelManager) {
- }
- }
|