v2.0.0
Loading...
Searching...
No Matches
mne_filter_def.h
Go to the documentation of this file.
1//=============================================================================================================
17
18#ifndef MNE_FILTER_DEF_H
19#define MNE_FILTER_DEF_H
20
21//=============================================================================================================
22// INCLUDES
23//=============================================================================================================
24
25#include "mne_global.h"
26
27//=============================================================================================================
28// DEFINE NAMESPACE MNELIB
29//=============================================================================================================
30
31namespace MNELIB
32{
33
34#ifndef MNEFILTERDEF
35#define MNEFILTERDEF
40{
41public:
42 MNEFilterDef() = default;
43 ~MNEFilterDef() = default;
44
45 bool filter_on = false;
46 int size = 0;
47 int taper_size = 0;
48 float highpass = 0;
49 float highpass_width = 0;
50 float lowpass = 0;
51 float lowpass_width = 0;
52 float eog_highpass = 0;
54 float eog_lowpass = 0;
56};
57
58#endif
59
60} // namespace MNELIB
61
62#endif // MNE_FILTER_DEF_H
MNELIB shared-library export/import macros and library build metadata.
#define MNESHARED_EXPORT
Definition mne_global.h:40
Core MNE data structures (source spaces, source estimates, hemispheres).