v2.0.0
Loading...
Searching...
No Matches
mne_filter_def.h
Go to the documentation of this file.
1//=============================================================================================================
36
37#ifndef MNE_FILTER_DEF_H
38#define MNE_FILTER_DEF_H
39
40//=============================================================================================================
41// INCLUDES
42//=============================================================================================================
43
44#include "mne_global.h"
45
46//=============================================================================================================
47// DEFINE NAMESPACE MNELIB
48//=============================================================================================================
49
50namespace MNELIB
51{
52
53#ifndef MNEFILTERDEF
54#define MNEFILTERDEF
59{
60public:
61 MNEFilterDef() = default;
62 ~MNEFilterDef() = default;
63
64 bool filter_on = false;
65 int size = 0;
66 int taper_size = 0;
67 float highpass = 0;
68 float highpass_width = 0;
69 float lowpass = 0;
70 float lowpass_width = 0;
71 float eog_highpass = 0;
73 float eog_lowpass = 0;
75};
76
77#endif
78
79} // namespace MNELIB
80
81#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).