MNE-CPP 0.1.9
A Framework for Electrophysiology
Loading...
Searching...
No Matches
dipole.cpp
Go to the documentation of this file.
1//=============================================================================================================
22#ifndef DIPOLE_SOURCES //Because this cpp is part of the header -> template
23#define DIPOLE_SOURCES
24
25//=============================================================================================================
26// INCLUDES
27//=============================================================================================================
28
29#include "dipole.h"
30
31//=============================================================================================================
32// DEFINE NAMESPACE INVERSELIB
33//=============================================================================================================
34
35namespace INVERSELIB
36{
37
38//=============================================================================================================
39// USED NAMESPACES
40//=============================================================================================================
41
42using namespace Eigen;
43
44//=============================================================================================================
45// DEFINE MEMBER METHODS
46//=============================================================================================================
47
48template <class T>
50: m_vecPosition(Matrix<T, 3, 1>::Zero(3))
51, m_vecDirection(Matrix<T, 3, 1>::Zero(3))
52, m_dLength(1)
53, m_dFrequency(0)
54{
55}
56
57//=============================================================================================================
58
59template <class T>
63}//Namespace
64
65#endif //DIPOLE_SOURCES
ToDo Documentation...
virtual ~Dipole()
Definition dipole.cpp:60