MNE-CPP  0.1.9
A Framework for Electrophysiology
fiff_ch_info.cpp
Go to the documentation of this file.
1 //=============================================================================================================
37 //=============================================================================================================
38 // INCLUDES
39 //=============================================================================================================
40 
41 #include "fiff_ch_info.h"
42 
43 //=============================================================================================================
44 // USED NAMESPACES
45 //=============================================================================================================
46 
47 using namespace FIFFLIB;
48 
49 //=============================================================================================================
50 // DEFINE MEMBER METHODS
51 //=============================================================================================================
52 
54 : scanNo(0)
55 , logNo(0)
56 , kind(0)
57 , range(1.0f)
58 , cal(1.0f)
59 , unit(0)
60 , unit_mul(0)
61 , ch_name(QString(""))
62 , coil_trans()
63 , eeg_loc()
64 , coord_frame(FIFFV_COORD_UNKNOWN)
65 {
66  coil_trans.setIdentity();
67 }
68 
69 //=============================================================================================================
70 
71 FiffChInfo::FiffChInfo(const FiffChInfo &p_FiffChInfo)
72 : scanNo(p_FiffChInfo.scanNo)
73 , logNo(p_FiffChInfo.logNo)
74 , kind(p_FiffChInfo.kind)
75 , range(p_FiffChInfo.range)
76 , cal(p_FiffChInfo.cal)
77 , chpos(p_FiffChInfo.chpos)
78 , unit(p_FiffChInfo.unit)
79 , unit_mul(p_FiffChInfo.unit_mul)
80 , ch_name(p_FiffChInfo.ch_name)
81 , coil_trans(p_FiffChInfo.coil_trans)
82 , eeg_loc(p_FiffChInfo.eeg_loc)
83 , coord_frame(p_FiffChInfo.coord_frame)
84 {
85 }
86 
87 //=============================================================================================================
88 
90 {
91 }
92 
fiff_ch_info.h
FiffChInfo class declaration.
FIFFLIB::FiffChInfo::~FiffChInfo
~FiffChInfo()
Definition: fiff_ch_info.cpp:89
FIFFLIB::FiffChInfo
Channel info descriptor.
Definition: fiff_ch_info.h:74
FIFFLIB::FiffChInfo::coil_trans
Eigen::Matrix< float, 4, 4, Eigen::DontAlign > coil_trans
Definition: fiff_ch_info.h:130
FIFFLIB::FiffChInfo::FiffChInfo
FiffChInfo()
Definition: fiff_ch_info.cpp:53