v2.0.0
Loading...
Searching...
No Matches
inv_focal_dipole.h
Go to the documentation of this file.
1//=============================================================================================================
21
22#ifndef INV_FOCAL_DIPOLE_H
23#define INV_FOCAL_DIPOLE_H
24
25//=============================================================================================================
26// EIGEN INCLUDES
27//=============================================================================================================
28
29#include <Eigen/Core>
30
31//=============================================================================================================
32// DEFINE NAMESPACE INVLIB
33//=============================================================================================================
34
35namespace INVLIB
36{
37
38//=============================================================================================================
47{
48 Eigen::Vector3f position;
49 Eigen::Vector3f moment;
51 float goodness;
52 float khi2;
53 int nfree;
54 bool valid;
55 float tmin;
56 float tmax;
57
59 : position(Eigen::Vector3f::Zero())
60 , moment(Eigen::Vector3f::Zero())
61 , gridIndex(-1)
62 , goodness(0.0f)
63 , khi2(0.0f)
64 , nfree(0)
65 , valid(false)
66 , tmin(0.0f)
67 , tmax(0.0f)
68 {
69 }
70};
71
72} // NAMESPACE INVLIB
73
74#endif // INV_FOCAL_DIPOLE_H
Inverse source estimation (MNE, dSPM, sLORETA, dipole fitting).