| 46 |
|
#endif |
| 47 |
|
|
| 48 |
|
#include <fstream> |
| 49 |
+ |
#include <iostream> |
| 50 |
+ |
#include <locale> |
| 51 |
|
#include "utils/simError.h" |
| 52 |
|
#include "utils/CaseConversion.hpp" |
| 53 |
|
#include "brains/Register.hpp" |
| 67 |
|
using namespace OpenMD; |
| 68 |
|
using namespace QuantLib; |
| 69 |
|
|
| 70 |
< |
int main(int argc,char* argv[]){ |
| 70 |
> |
int main(int argc, char* argv[]){ |
| 71 |
|
|
| 72 |
|
// first things first, all of the initializations |
| 73 |
|
|
| 74 |
|
#ifdef IS_MPI |
| 75 |
< |
MPI_Init( &argc, &argv ); // the MPI communicators |
| 75 |
> |
MPI::Init( argc, argv ); // the MPI communicators |
| 76 |
|
#endif |
| 77 |
|
|
| 78 |
|
initSimError(); // the error handler |
| 229 |
|
errorCheckPoint(); |
| 230 |
|
|
| 231 |
|
#ifdef IS_MPI |
| 232 |
< |
MPI_Finalize(); |
| 232 |
> |
MPI::Finalize(); |
| 233 |
|
#endif |
| 234 |
|
|
| 235 |
|
return 0 ; |