v2.0.0
Loading...
Searching...
No Matches
fwd_eeg_sphere_layer.h
Go to the documentation of this file.
1//=============================================================================================================
36
37#ifndef FWD_EEG_SPHERE_LAYER_H
38#define FWD_EEG_SPHERE_LAYER_H
39
40//=============================================================================================================
41// INCLUDES
42//=============================================================================================================
43
44#include "fwd_global.h"
45
46//=============================================================================================================
47// EIGEN INCLUDES
48//=============================================================================================================
49
50#include <Eigen/Core>
51
52//=============================================================================================================
53// QT INCLUDES
54//=============================================================================================================
55
56#include <QDebug>
57
58//=============================================================================================================
59// DEFINE NAMESPACE FWDLIB
60//=============================================================================================================
61
62namespace FWDLIB
63{
64
65//=============================================================================================================
72{
73public:
74
75 //=========================================================================================================
80
81 //=========================================================================================================
86
87 //=========================================================================================================
96 static bool comp_layers(const FwdEegSphereLayer& v1, const FwdEegSphereLayer& v2)
97 {
98 return v1.rad < v2.rad;
99 }
100
101public:
102 float rad;
103 float rel_rad;
104 float sigma;
105};
106
107//=============================================================================================================
108// INLINE DEFINITIONS
109//=============================================================================================================
110} // NAMESPACE FWDLIB
111
112#endif // FWD_EEG_SPHERE_LAYER_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
static bool comp_layers(const FwdEegSphereLayer &v1, const FwdEegSphereLayer &v2)