Files
UR/src/main.cxx

25 lines
480 B
C++
Raw Normal View History

2023-06-14 14:48:53 +08:00
#include "config/config.h"
2023-05-04 16:37:33 +08:00
#define EIGEN_USE_MKL_ALL
#include <iostream>
#include <algorithm>
#include <complex>
2023-05-05 16:47:49 +08:00
#include "common/ceMatchedFilterHandling.h"
2023-05-04 16:37:33 +08:00
#include "MatlabReader.h"
2023-06-02 15:51:45 +08:00
#include "startReconstructions.h"
2023-06-15 09:14:04 +08:00
#include "log/log.h"
2023-06-05 14:55:53 +08:00
2023-05-04 16:37:33 +08:00
int main()
{
2023-06-05 14:55:53 +08:00
auto defaultLogger = getLogger("Main");
spdlog::set_default_logger(defaultLogger);
2023-06-15 09:14:04 +08:00
RECON_INFO("start");
2023-06-14 14:48:53 +08:00
Recon::initalizeConfig();
2023-06-02 15:51:45 +08:00
Recon::startReconstructions();
2023-06-05 14:55:53 +08:00
SPDLOG_INFO("finish");
2023-05-04 16:37:33 +08:00
return 0;
}