2016-12-15 18:26:39 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
2016-02-25 12:07:21 +00:00
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
2018-10-15 15:51:45 +01:00
|
|
|
Source file: Hadrons/Utilities/HadronsXmlRun.cc
|
2016-02-25 12:07:21 +00:00
|
|
|
|
2019-02-05 18:55:24 +00:00
|
|
|
Copyright (C) 2015-2019
|
2016-02-25 12:07:21 +00:00
|
|
|
|
|
|
|
Author: Antonin Portelli <antonin.portelli@me.com>
|
|
|
|
|
|
|
|
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 Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
2016-12-15 18:26:39 +00:00
|
|
|
See the full license in the file "LICENSE" in the top level distribution directory
|
|
|
|
*************************************************************************************/
|
2016-12-15 18:21:52 +00:00
|
|
|
/* END LEGAL */
|
2015-10-27 17:33:18 +00:00
|
|
|
|
2018-08-28 15:00:40 +01:00
|
|
|
#include <Hadrons/Application.hpp>
|
2015-10-27 17:33:18 +00:00
|
|
|
|
2016-05-03 03:31:21 +01:00
|
|
|
using namespace Grid;
|
2018-01-15 09:37:58 +00:00
|
|
|
|
2015-10-27 17:33:18 +00:00
|
|
|
using namespace Hadrons;
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2016-01-14 04:22:37 +00:00
|
|
|
// parse command line
|
2019-05-24 13:08:20 +01:00
|
|
|
std::string parameterFileName;
|
2016-01-14 04:22:37 +00:00
|
|
|
|
|
|
|
if (argc < 2)
|
|
|
|
{
|
2019-05-24 13:08:20 +01:00
|
|
|
std::cerr << "usage: " << argv[0] << " <parameter file> [Grid options]";
|
2016-01-14 04:22:37 +00:00
|
|
|
std::cerr << std::endl;
|
|
|
|
std::exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
parameterFileName = argv[1];
|
2016-02-23 16:33:00 +00:00
|
|
|
|
|
|
|
// initialization
|
2016-01-14 04:22:37 +00:00
|
|
|
Grid_init(&argc, &argv);
|
|
|
|
|
|
|
|
// execution
|
2018-03-02 19:19:37 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
Application application(parameterFileName);
|
|
|
|
|
|
|
|
application.parseParameterFile(parameterFileName);
|
|
|
|
application.run();
|
|
|
|
}
|
|
|
|
catch (const std::exception& e)
|
2016-12-14 19:41:30 +00:00
|
|
|
{
|
2018-04-23 12:48:00 +01:00
|
|
|
Exceptions::abort(e);
|
2016-12-14 19:41:30 +00:00
|
|
|
}
|
2015-10-27 17:33:18 +00:00
|
|
|
|
2016-02-23 16:33:00 +00:00
|
|
|
// epilogue
|
|
|
|
LOG(Message) << "Grid is finalizing now" << std::endl;
|
|
|
|
Grid_finalize();
|
|
|
|
|
2015-10-27 17:33:18 +00:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|