25 lines
480 B
C++
25 lines
480 B
C++
#include "config/config.h"
|
|
#define EIGEN_USE_MKL_ALL
|
|
|
|
#include <iostream>
|
|
#include <algorithm>
|
|
|
|
|
|
#include <complex>
|
|
|
|
#include "common/ceMatchedFilterHandling.h"
|
|
#include "MatlabReader.h"
|
|
#include "startReconstructions.h"
|
|
#include "log/log.h"
|
|
|
|
int main()
|
|
{
|
|
auto defaultLogger = getLogger("Main");
|
|
spdlog::set_default_logger(defaultLogger);
|
|
RECON_INFO("start");
|
|
Recon::initalizeConfig();
|
|
Recon::startReconstructions();
|
|
SPDLOG_INFO("finish");
|
|
return 0;
|
|
}
|