mne.
AcqParserFIF
(info)[source]¶Parser for Elekta data acquisition settings.
This class parses parameters (e.g. events and averaging categories) that
are defined in the Elekta TRIUX/VectorView data acquisition software (DACQ)
and stored in info['acq_pars']
. It can be used to reaverage raw data
according to DACQ settings and modify original averaging settings if
necessary.
Parameters: |
|
---|
See also
mne.io.Raw.acqparser
Notes
Any averaging category (also non-active ones) can be accessed by indexing
as acqparserfif['category_name']
.
Attributes: |
|
---|
Methods
__getitem__ (item) |
Return an averaging category, or list of categories. |
__hash__ ($self, /) |
Return hash(self). |
__len__ () |
Return number of averaging categories marked active in DACQ. |
get_condition (raw[, condition, …]) |
Get averaging parameters for a condition (averaging category). |
__getitem__
(item)[source]¶Return an averaging category, or list of categories.
Parameters: |
|
---|---|
Returns: |
|
__hash__
($self, /)¶Return hash(self).
categories
¶Return list of averaging categories ordered by DACQ index.
Only returns categories marked active in DACQ.
events
¶Return events ordered by DACQ index.
Only returns events that are in use (referred to by a category).
get_condition
(raw, condition=None, stim_channel=None, mask=None, uint_cast=None, mask_type='and', delayed_lookup=True)[source]¶Get averaging parameters for a condition (averaging category).
Output is designed to be used with the Epochs class to extract the corresponding epochs.
Parameters: |
|
---|---|
Returns: |
|