2016-12-15 18:26:39 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
2016-02-25 12:07:21 +00:00
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
2016-12-15 18:26:39 +00:00
|
|
|
Source file: extras/Hadrons/HadronsXmlRun.cc
|
2016-02-25 12:07:21 +00:00
|
|
|
|
2017-12-26 13:16:47 +00:00
|
|
|
Copyright (C) 2015-2018
|
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
|
|
|
|
2016-11-28 07:02:15 +00:00
|
|
|
#include <Grid/Hadrons/Application.hpp>
|
2015-10-27 17:33:18 +00:00
|
|
|
|
2016-05-03 03:31:21 +01:00
|
|
|
using namespace Grid;
|
|
|
|
using namespace QCD;
|
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
|
2016-12-14 19:41:30 +00:00
|
|
|
std::string parameterFileName, scheduleFileName = "";
|
2016-01-14 04:22:37 +00:00
|
|
|
|
|
|
|
if (argc < 2)
|
|
|
|
{
|
2016-12-14 19:41:30 +00:00
|
|
|
std::cerr << "usage: " << argv[0] << " <parameter file> [<precomputed schedule>] [Grid options]";
|
2016-01-14 04:22:37 +00:00
|
|
|
std::cerr << std::endl;
|
|
|
|
std::exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
parameterFileName = argv[1];
|
2016-12-14 19:41:30 +00:00
|
|
|
if (argc > 2)
|
|
|
|
{
|
|
|
|
if (argv[2][0] != '-')
|
|
|
|
{
|
|
|
|
scheduleFileName = argv[2];
|
|
|
|
}
|
|
|
|
}
|
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);
|
|
|
|
if (!scheduleFileName.empty())
|
|
|
|
{
|
|
|
|
application.loadSchedule(scheduleFileName);
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|