Lemma is an Electromagnetics API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

hankeltransform.cpp 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* This file is part of Lemma, a geophysical modelling and inversion API */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. /**
  6. @file
  7. @author Trevor Irons
  8. @date 01/02/2010
  9. @version $Id: hankeltransform.cpp 193 2014-11-10 23:51:41Z tirons $
  10. **/
  11. #include "hankeltransform.h"
  12. namespace Lemma {
  13. std::ostream &operator<<(std::ostream &stream,
  14. const HankelTransform &ob) {
  15. stream << *(LemmaObject*)(&ob);
  16. return stream;
  17. }
  18. HankelTransform::HankelTransform(const std::string &name) :
  19. LemmaObject(name) {
  20. }
  21. HankelTransform::~HankelTransform() {
  22. }
  23. void HankelTransform::ComputeRelated(const Real& rho, KernelEm1DBase *Kernel) {
  24. }
  25. void HankelTransform::ComputeRelated(const Real& rho, std::vector< KernelEm1DBase* > KernelVec) {
  26. }
  27. void HankelTransform::ComputeRelated(const Real& rho, KernelEM1DManager* KernelManager) {
  28. }
  29. }