OPAL (Object Oriented Parallel Accelerator Library) 2022.1
OPAL
Globals.cpp
Go to the documentation of this file.
1#include <gsl/gsl_errno.h>
2
3#include "H5hut.h"
4
8#include "Parser/FileStream.h"
9#include "Parser/TerminalStream.h"
10#include "Utilities/Timer.h"
11#include "Fields/Fieldmap.h"
12#include "FixedAlgebra/FTps.h"
13
14#include "BasicActions/Option.h"
15#include "Utilities/Options.h"
16#include "Utilities/Options.h"
18#include "Utilities/Util.h"
19
20#include "OPALconfig.h"
21
22#ifdef ENABLE_AMR
23#include <AMReX_ParallelDescriptor.H>
24#endif
25/*
26 Includes related to the optimizer
27*/
28#include "boost/smart_ptr.hpp"
29
30#include "Pilot/Pilot.h"
31#include "Util/CmdArguments.h"
33
37
39
40#include "Comm/CommSplitter.h"
44
46#include "Expression/FromFile.h"
47#include "Expression/SumErrSq.h"
52
53#include <gsl/gsl_errno.h>
54
55#include <boost/filesystem.hpp>
56#include <boost/algorithm/string/predicate.hpp>
57
58#include <mpi.h>
59
60#include <cstring>
61#include <set>
62#include <algorithm>
64#define PYOPAL_GLOBALS_C
65#include "PyOpal/Globals.h"
66
67namespace {
68 void errorHandlerGSL(const char *reason,
69 const char *file,
70 int line,
71 int gsl_errno) {
72 throw OpalException(file, reason);
73 }
74}
75
76namespace PyOpal {
77namespace Globals {
78void Initialise() {
79 if (gmsg == NULL) {
80 std::cerr << "GMSG init " << gmsg << std::endl;
81 gmsg = new Inform("OPAL");
82 std::cerr << "GMSG inited " << gmsg << std::endl;
83 }
84 if (ippl == NULL) {
85 int argc = 3;
86
87 char* argvr[] = {
88 (char*)("pyopal"),
89 (char*)("--processes"),
90 (char*)("3"),
91 //(char*)("--commlib"),
92 //(char*)("serial"),
93 nullptr
94 };
95 char** argv = argvr;
96 std::cerr << "INITIALISING IPPL" << std::endl;
97 // Ippl is a typedef of IpplInfo in ippl/Utilities
98 //MPI_Init(&argc, &argv);
99 ippl = new Ippl(argc, argv);
100 std::cerr << "INITIALISED IPPL" << std::endl;
101 }
102 gsl_set_error_handler(&errorHandlerGSL);
103}
104}
105}
Inform & endl(Inform &inf)
Definition: Inform.cpp:42
IpplInfo Ippl
Definition: IpplInfo.h:353
void Initialise()
Definition: Globals.cpp:78
The base class for all OPAL exceptions.
Definition: OpalException.h:28
Definition: Inform.h:42
Ippl * ippl
Definition: Main.cpp:60
Inform * gmsg
Definition: Main.cpp:61