MNE-CPP
0.1.9
A Framework for Electrophysiology
|
GuessData description. More...
#include <guess_data.h>
Public Types | |
typedef QSharedPointer< GuessData > | SPtr |
typedef QSharedPointer< const GuessData > | ConstSPtr |
Public Member Functions | |
GuessData () | |
GuessData (const QString &guessname, const QString &guess_surfname, float mindist, float exclude, float grid, DipoleFitData *f) | |
GuessData (const QString &guessname, const QString &guess_surfname, float mindist, float exclude, float grid, DipoleFitData *f, char *guess_save_name) | |
~GuessData () | |
bool | compute_guess_fields (DipoleFitData *f) |
Public Attributes | |
float ** | rr |
DipoleForward ** | guess_fwd |
int | nguess |
GuessData description.
Implements GuessData (Replaces *guessData,guessDataRec struct of MNE-C fit_types.h).
Definition at line 78 of file guess_data.h.
typedef QSharedPointer<const GuessData> INVERSELIB::GuessData::ConstSPtr |
Const shared pointer type for GuessData.
Definition at line 82 of file guess_data.h.
typedef QSharedPointer<GuessData> INVERSELIB::GuessData::SPtr |
Shared pointer type for GuessData.
Definition at line 81 of file guess_data.h.
GuessData::GuessData | ( | ) |
Constructs the Guess Data Refactored: new_guess_data (dipole_fit_setup.c)
Definition at line 169 of file guess_data.cpp.
GuessData::GuessData | ( | const QString & | guessname, |
const QString & | guess_surfname, | ||
float | mindist, | ||
float | exclude, | ||
float | grid, | ||
DipoleFitData * | f | ||
) |
Constructs the Guess Data from given Data Refactored: make_guess_data (setup.c)
[in] | guessname. |
Definition at line 184 of file guess_data.cpp.
GuessData::GuessData | ( | const QString & | guessname, |
const QString & | guess_surfname, | ||
float | mindist, | ||
float | exclude, | ||
float | grid, | ||
DipoleFitData * | f, | ||
char * | guess_save_name | ||
) |
Constructs the Guess Data from given Data Refactored: make_guess_data (dipole_fit_setup.c)
[in] | guessname. |
Definition at line 284 of file guess_data.cpp.
GuessData::~GuessData | ( | ) |
Destroys the Guess Data description Refactored: free_guess_data (dipole_fit_setup.c)
Definition at line 382 of file guess_data.cpp.
bool GuessData::compute_guess_fields | ( | DipoleFitData * | f | ) |
Once the guess locations have been set up we can compute the fields Refactored: compute_guess_fields (dipole_fit_setup.c)
[in] | f | Dipole Fit Data to the Compute Guess Fields. |
Definition at line 395 of file guess_data.cpp.
DipoleForward** INVERSELIB::GuessData::guess_fwd |
Forward solutions for the guesses.
Definition at line 139 of file guess_data.h.
int INVERSELIB::GuessData::nguess |
How many sources.
Definition at line 140 of file guess_data.h.
float** INVERSELIB::GuessData::rr |
These are the guess dipole locations.
Definition at line 138 of file guess_data.h.