v2.0.0
Loading...
Searching...
No Matches
inv_focal_dipole.h
Go to the documentation of this file.
1//=============================================================================================================
34
35#ifndef INV_FOCAL_DIPOLE_H
36#define INV_FOCAL_DIPOLE_H
37
38//=============================================================================================================
39// EIGEN INCLUDES
40//=============================================================================================================
41
42#include <Eigen/Core>
43
44//=============================================================================================================
45// DEFINE NAMESPACE INVLIB
46//=============================================================================================================
47
48namespace INVLIB
49{
50
51//=============================================================================================================
60{
61 Eigen::Vector3f position;
62 Eigen::Vector3f moment;
64 float goodness;
65 float khi2;
66 int nfree;
67 bool valid;
68 float tmin;
69 float tmax;
70
72 : position(Eigen::Vector3f::Zero())
73 , moment(Eigen::Vector3f::Zero())
74 , gridIndex(-1)
75 , goodness(0.0f)
76 , khi2(0.0f)
77 , nfree(0)
78 , valid(false)
79 , tmin(0.0f)
80 , tmax(0.0f)
81 {
82 }
83};
84
85} // NAMESPACE INVLIB
86
87#endif // INV_FOCAL_DIPOLE_H
Inverse source estimation (MNE, dSPM, sLORETA, dipole fitting).