Lemma is an Electromagnetics API
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

LemmaCore 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* This file is part of Lemma, a geophysical modelling and inversion API */
  2. /* Copyright (C) 2009-2013 Trevor Irons <trevorirons@gmail.com> */
  3. /* This Source Code Form is subject to the terms of the Mozilla Public
  4. * License, v. 2.0. If a copy of the MPL was not distributed with this
  5. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  6. /**
  7. @file
  8. @author Trevor Irons
  9. @version $Id$
  10. **/
  11. // Convenience include all of LemmaCore
  12. # pragma once
  13. #ifndef LEMMAINCLUDE_INC
  14. #define LEMMAINCLUDE_INC
  15. #include "ASCIIParser.h"
  16. #include "CubicSplineInterpolator.h"
  17. //#include "Data.h"
  18. //#include "DataReader.h"
  19. //#include "EarthModel.h"
  20. //#include "Filter.h"
  21. //#include "Grid.h"
  22. //#include "GridReader.h"
  23. //#include "Instrument.h"
  24. #include "LayeredEarth.h"
  25. //#include "LemmaObject.h"
  26. #include "RectilinearGrid.h"
  27. #include "RectilinearGridReader.h"
  28. #include "RectilinearGridVTKExporter.h"
  29. #include "WindowFilter.h"
  30. // helpers and utilities
  31. #include "banner.h"
  32. #include "helper.h"
  33. #include "timer.h"
  34. #endif // ----- #ifndef LEMMAINCLUDE_INC -----
  35. /* vim: set tabstop=4 expandtab: */
  36. /* vim: set filetype=cpp: */