MNE-CPP
0.1.9
A Framework for Electrophysiology
|
evoked data set More...
#include <fiff_evoked_set.h>
Public Types | |
typedef QSharedPointer< FiffEvokedSet > | SPtr |
typedef QSharedPointer< const FiffEvokedSet > | ConstSPtr |
Public Member Functions | |
FiffEvokedSet () | |
FiffEvokedSet (QIODevice &p_IODevice) | |
FiffEvokedSet (const FiffEvokedSet &p_FiffEvokedSet) | |
~FiffEvokedSet () | |
void | clear () |
FiffEvokedSet | pick_channels (const QStringList &include=defaultQStringList, const QStringList &exclude=defaultQStringList) const |
bool | compensate_to (FiffEvokedSet &p_FiffEvokedSet, fiff_int_t to) const |
bool | find_evoked (const FiffEvokedSet &p_FiffEvokedSet) const |
Static Public Member Functions | |
static bool | read (QIODevice &p_IODevice, FiffEvokedSet &p_FiffEvokedSet, QPair< float, float > baseline=defaultFloatPair, bool proj=true) |
Public Attributes | |
FiffInfo | info |
QList< FiffEvoked > | evoked |
typedef QSharedPointer<const FiffEvokedSet> FIFFLIB::FiffEvokedSet::ConstSPtr |
Const shared pointer type for FiffEvokedSet.
Definition at line 81 of file fiff_evoked_set.h.
typedef QSharedPointer<FiffEvokedSet> FIFFLIB::FiffEvokedSet::SPtr |
Shared pointer type for FiffEvokedSet.
Definition at line 80 of file fiff_evoked_set.h.
FiffEvokedSet::FiffEvokedSet | ( | ) |
Constructs a fiff evoked data set.
Definition at line 69 of file fiff_evoked_set.cpp.
FiffEvokedSet::FiffEvokedSet | ( | QIODevice & | p_IODevice | ) |
Constructs a fiff evoked data set, by reading from a IO device.
[in] | p_IODevice | IO device to read from the evoked data set. |
Definition at line 77 of file fiff_evoked_set.cpp.
FiffEvokedSet::FiffEvokedSet | ( | const FiffEvokedSet & | p_FiffEvokedSet | ) |
Copy constructor.
[in] | p_FiffEvokedSet | Fiff evoked data set which should be copied. |
Definition at line 91 of file fiff_evoked_set.cpp.
FiffEvokedSet::~FiffEvokedSet | ( | ) |
Destroys the fiff evoked data set.
Definition at line 99 of file fiff_evoked_set.cpp.
void FiffEvokedSet::clear | ( | ) |
Initializes fiff evoked data set.
Definition at line 105 of file fiff_evoked_set.cpp.
bool FiffEvokedSet::compensate_to | ( | FiffEvokedSet & | p_FiffEvokedSet, |
fiff_int_t | to | ||
) | const |
mne_compensate_to
Apply compensation to the data as desired
[in] | to | desired compensation in the output. |
[in,out] | p_FiffEvoked | Evoked set to compensate. |
Definition at line 165 of file fiff_evoked_set.cpp.
bool FiffEvokedSet::find_evoked | ( | const FiffEvokedSet & | p_FiffEvokedSet | ) | const |
fiff_find_evoked
Find evoked data sets
[out] | p_FiffEvokedSet | The read evoked data set. |
Definition at line 193 of file fiff_evoked_set.cpp.
FiffEvokedSet FiffEvokedSet::pick_channels | ( | const QStringList & | include = defaultQStringList , |
const QStringList & | exclude = defaultQStringList |
||
) | const |
fiff_pick_channels_evoked
Pick desired channels from evoked-response data
[in] | include | - Channels to include (if empty, include all available). |
[in] | exclude | - Channels to exclude (if empty, do not exclude any). |
Definition at line 113 of file fiff_evoked_set.cpp.
|
static |
fiff_read_evoked
Wrapper for the FiffEvokedDataSet::read_evoked static function
Read one evoked data set
[in] | p_IODevice | An fiff IO device like a fiff QFile or QTCPSocket. |
[out] | p_FiffEvokedSet | The read evoked data set. |
[in] | baseline | The time interval to apply rescaling / baseline correction. If None do not apply it. If baseline is (a, b). the interval is between "a (s)" and "b (s)". If a is None the beginning of the data is used and if b is None then b is set to the end of the interval. If baseline is equal ot (None, None) all the time interval is used. If None, no correction is applied. |
[in] | proj | Apply SSP projection vectors (optional, default = true). |
Definition at line 211 of file fiff_evoked_set.cpp.
QList<FiffEvoked> FIFFLIB::FiffEvokedSet::evoked |
List of Fiff Evoked Data.
Definition at line 190 of file fiff_evoked_set.h.
FiffInfo FIFFLIB::FiffEvokedSet::info |
FIFF measurement information.
Definition at line 189 of file fiff_evoked_set.h.