MNE-CPP
0.1.9
A Framework for Electrophysiology
|
Holds a set of Electric Current Dipoles. More...
#include <ecd_set.h>
Public Types | |
typedef QSharedPointer< ECDSet > | SPtr |
typedef QSharedPointer< const ECDSet > | ConstSPtr |
Public Member Functions | |
ECDSet () | |
ECDSet (const ECDSet &p_ECDSet) | |
~ECDSet () | |
void | addEcd (const ECD &p_ecd) |
bool | save_dipoles_bdip (const QString &fileName) |
bool | save_dipoles_dip (const QString &fileName) const |
qint32 | size () const |
const ECD & | operator[] (int idx) const |
ECD & | operator[] (int idx) |
ECDSet & | operator<< (const ECD &p_ecd) |
Static Public Member Functions | |
static ECDSet | read_dipoles_dip (const QString &fileName) |
Public Attributes | |
QString | dataname |
Holds a set of Electric Current Dipoles.
Implements Electric Current Dipole Set (Replaces *ecdSet,ecdSetRec struct of MNE-C fit_types.h).
typedef QSharedPointer<const ECDSet> INVERSELIB::ECDSet::ConstSPtr |
typedef QSharedPointer<ECDSet> INVERSELIB::ECDSet::SPtr |
ECDSet::ECDSet | ( | ) |
Constructs a Electric Current Dipole Set object.
Definition at line 139 of file ecd_set.cpp.
ECDSet::ECDSet | ( | const ECDSet & | p_ECDSet | ) |
Copy constructor.
[in] | p_ECDSet | Electric Current Dipole Set which should be copied. |
Definition at line 145 of file ecd_set.cpp.
ECDSet::~ECDSet | ( | ) |
Destroys the Electric Current Dipole description
Definition at line 153 of file ecd_set.cpp.
void ECDSet::addEcd | ( | const ECD & | p_ecd | ) |
Appends an Electric Current Dipole to the set
Definition at line 159 of file ecd_set.cpp.
Subscript operator << to add a new ECD
[in] | p_ecd | ECD to be added. |
Definition at line 336 of file ecd_set.cpp.
ECD & ECDSet::operator[] | ( | int | idx | ) |
Subscript operator [] to access ECD by index
[in] | idx | the ECD index. |
Definition at line 324 of file ecd_set.cpp.
const ECD & ECDSet::operator[] | ( | int | idx | ) | const |
Subscript operator [] to access ECD by index
[in] | idx | the ECD index. |
Definition at line 312 of file ecd_set.cpp.
|
static |
Read dipoles from the dip format compatible with mrilab
[in] | name | File name to read from. |
Definition at line 166 of file ecd_set.cpp.
bool ECDSet::save_dipoles_bdip | ( | const QString & | fileName | ) |
Save dipoles in the bdip format employed by xfit
[in] | fileName | File name to save to. |
Definition at line 209 of file ecd_set.cpp.
bool ECDSet::save_dipoles_dip | ( | const QString & | fileName | ) | const |
Save dipoles in the dip format suitable for mrilab
[in] | fileName | File name to save to. |
Definition at line 267 of file ecd_set.cpp.
|
inline |
QString INVERSELIB::ECDSet::dataname |