v2.0.0
Loading...
Searching...
No Matches
mne_filter_def.h
Go to the documentation of this file.
1#ifndef MNE_FILTER_DEF_H
2#define MNE_FILTER_DEF_H
3
4//=============================================================================================================
5// INCLUDES
6//=============================================================================================================
7
8#include "mne_global.h"
9
10//=============================================================================================================
11// DEFINE NAMESPACE MNELIB
12//=============================================================================================================
13
14namespace MNELIB
15{
16
17#ifndef MNEFILTERDEF
18#define MNEFILTERDEF
23{
24public:
25 MNEFilterDef() = default;
26 ~MNEFilterDef() = default;
27
28 bool filter_on = false;
29 int size = 0;
30 int taper_size = 0;
31 float highpass = 0;
32 float highpass_width = 0;
33 float lowpass = 0;
34 float lowpass_width = 0;
35 float eog_highpass = 0;
37 float eog_lowpass = 0;
39};
40
41#endif
42
43} // namespace MNELIB
44
45#endif // MNE_FILTER_DEF_H
mne library export/import macros.
#define MNESHARED_EXPORT
Definition mne_global.h:52
Core MNE data structures (source spaces, source estimates, hemispheres).