MNE-CPP  beta 1.0
fiff_ch_info.cpp
Go to the documentation of this file.
1 //=============================================================================================================
36 //*************************************************************************************************************
37 //=============================================================================================================
38 // INCLUDES
39 //=============================================================================================================
40 
41 #include "fiff_ch_info.h"
42 
43 
44 //*************************************************************************************************************
45 //=============================================================================================================
46 // USED NAMESPACES
47 //=============================================================================================================
48 
49 using namespace FIFFLIB;
50 
51 
52 //*************************************************************************************************************
53 //=============================================================================================================
54 // DEFINE MEMBER METHODS
55 //=============================================================================================================
56 
58 : scanno(0)
59 , logno(0)
60 , kind(0)
61 , range(-1)
62 , cal(1.0f)
63 , coil_type(0)
64 , coord_frame(FIFFV_COORD_UNKNOWN)
65 , unit(0)
66 , unit_mul(0)
67 , ch_name(QString(""))
68 {
69 
70 }
71 
72 
73 //*************************************************************************************************************
74 
75 FiffChInfo::FiffChInfo(const FiffChInfo &p_FiffChInfo)
76 : scanno(p_FiffChInfo.scanno)
77 , logno(p_FiffChInfo.logno)
78 , kind(p_FiffChInfo.kind)
79 , range(p_FiffChInfo.range)
80 , cal(p_FiffChInfo.cal)
81 , coil_type(p_FiffChInfo.coil_type)
82 , loc(p_FiffChInfo.loc)
83 , coil_trans(p_FiffChInfo.coil_trans)
84 , eeg_loc(p_FiffChInfo.eeg_loc)
85 , coord_frame(p_FiffChInfo.coord_frame)
86 , unit(p_FiffChInfo.unit)
87 , unit_mul(p_FiffChInfo.unit_mul)
88 , ch_name(p_FiffChInfo.ch_name)
89 {
90 
91 }
92 
93 
94 //*************************************************************************************************************
95 
97 {
98 
99 }
FiffChInfo class declaration.
#define FIFFV_COORD_UNKNOWN
Channel info descriptor.
Definition: fiff_ch_info.h:87
Definition: fiff.h:98