v2.0.0
Loading...
Searching...
No Matches
fwd_bem_solution.h
Go to the documentation of this file.
1//=============================================================================================================
36
37#ifndef FWD_BEM_SOLUTION_H
38#define FWD_BEM_SOLUTION_H
39
40//=============================================================================================================
41// INCLUDES
42//=============================================================================================================
43
44#include "fwd_global.h"
45
46#include <memory>
47
48//=============================================================================================================
49// EIGEN INCLUDES
50//=============================================================================================================
51
52#include <Eigen/Core>
53
54//=============================================================================================================
55// QT INCLUDES
56//=============================================================================================================
57
58//=============================================================================================================
59// DEFINE NAMESPACE FWDLIB
60//=============================================================================================================
61
62namespace FWDLIB
63{
64
65//=============================================================================================================
72{
73public:
74 typedef std::unique_ptr<FwdBemSolution> UPtr;
75
76 //=========================================================================================================
81
82 //=========================================================================================================
87
88public:
89 Eigen::MatrixXf solution;
90 int ncoil;
91 int np;
92};
93
94//=============================================================================================================
95// INLINE DEFINITIONS
96//=============================================================================================================
97} // NAMESPACE FWDLIB
98
99#endif // FWD_BEM_SOLUTION_H
Forward library export/import macros.
#define FWDSHARED_EXPORT
Definition fwd_global.h:53
Forward modelling (BEM, MEG/EEG lead fields).
Definition compute_fwd.h:91
std::unique_ptr< FwdBemSolution > UPtr