123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /* This file is part of Lemma, a geophysical modelling and inversion API.
- * More information is available at http://lemmasoftware.org
- */
-
- /* 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
- * @date 08/28/2017 09:07:04 AM
- * @version $Id$
- * @author Trevor Irons (ti)
- * @email tirons@egi.utah.edu
- * @copyright Copyright (c) 2017, University of Utah
- * @copyright Copyright (c) 2017, Lemma Software, LLC
- */
-
- #include <Merlin>
- using namespace Lemma;
-
- int main(int argc, char** argv) {
-
- if (argc<5) {
- std::cout << "./ForwardFID Kernel.yaml TxString RxString vtkoutput<true/false> \n";
- // return(EXIT_FAILURE);
- }
- auto Kernel = KernelV0::DeSerialize(YAML::LoadFile(argv[1]));
- // std::cout << *Kernel;
-
- auto Model = LayeredEarthMR::NewSP();
- Model->AlignWithKernel(Kernel);
- Model->SetT2StarBins(10, 500, 20);
- std::cout << *Model << std::endl;
-
- /*
- auto Forward = ForwardFID::NewSP();
- //Forward->SetWindowEdges( VectorXr::LinSpaced(10,0,1) );
- Forward->SetLogSpacedWindows(10,1000,30);
- //auto FID = Forward->ForwardModel(Model);
- //std::cout << *Forward << std::endl;
- */
- return EXIT_SUCCESS;
- }
|