-
Notifications
You must be signed in to change notification settings - Fork 0
/
fsFeedbackTab.h
executable file
·264 lines (188 loc) · 5.91 KB
/
fsFeedbackTab.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
#ifndef __SPIKE_FS_REALTIME_FEEDBACK_H__
#define __SPIKE_FS_REALTIME_FEEDBACK_H__
#include <QtGui>
#include <QtWidgets>
#include <QtXml>
#include <tuple>
#include <fsSharedStimControlDefines.h>
#define DEFAULT_TMP_PULSE_COMMANDS_FILE "/tmp/tmp_pulse_commands"
class ThetaPhaseStim : public QWidget
{
Q_OBJECT
public:
ThetaPhaseStim (QWidget *parent);
//public slots:
// void setFilterEnabled(bool);
};
class RippleFilter : public QDialog
{
Q_OBJECT
public:
RippleFilter (QWidget *parent);
typedef std::tuple<QLabel *, QLineEdit *, QLineEdit *> QBaselineValueLine;
QGroupBox *algorithmParametersGroupBox;
QSpinBox *sampDivisor;
QLineEdit *ripCoeff1;
QLineEdit *ripCoeff2;
QLineEdit *ripThresh;
QSpinBox *nAboveThreshold;
QSpinBox *lockoutTime;
QCheckBox *detectNoRipples;
QSpinBox *detectNoRippleTime;
QButtonGroup *rippleValueUpdateButtonGroup;
QPushButton *pullRippleValuesButton;
//QPushButton *stopResetRippleValuesButton;
QPushButton *pushRippleValuesButton;
QGroupBox *baselineChannelValuesGroupBox;
QWidget *baselineChannelValuesGroup;
QGridLayout *baselineChannelValuesLayout;
QMap<int, QBaselineValueLine> *baselineGroupMap;
bool enabled;
int loadFromXML(QDomElement &nt);
void saveToXML(QDomDocument &doc, QDomElement &rootNode);
public slots:
void setFilterEnabled(bool);
void updateRippleData(void);
void setBaselineValuesSelect(qint16 ind, bool selected);
void setBaselineValuesListEditable(bool editable);
void updateBaselineValuesListMean(double *means);
void updateBaselineValuesListStd(double *stds);
void updateBaselineValueMeanBuffer(int nTrodeID, QString mean);
void updateBaselineValueStdBuffer(int nTrodeID, QString std);
void setEnableCustomBaselineValues(bool enabled);
private slots:
void updateCustomBaselineMean(void);
void updateCustomBaselineStd(void);
signals:
void SendFSDataMessage(int message, char *data, int size);
private:
double *baselineValuesMeanBuffer;
double *baselineValuesStdBuffer;
};
class SpatialFilter : public QDialog
{
Q_OBJECT
public:
SpatialFilter (QWidget *parent);
QSpinBox *lowerLeftX;
QSpinBox *lowerLeftY;
QSpinBox *upperRightX;
QSpinBox *upperRightY;
QDoubleSpinBox *cmPerPix;
QLineEdit *minSpeedThresh;
QLineEdit *maxSpeedThresh;
QSpinBox *lockoutTime;
bool enabled;
int loadFromXML(QDomElement &nt);
void saveToXML(QDomDocument &doc, QDomElement &rootNode);
public slots:
void setFilterEnabled(bool);
void updateSpatialData(void);
signals:
void SendFSDataMessage(int message, char *data, int size);
};
class PhaseFilter : public QDialog
{
Q_OBJECT
public:
PhaseFilter (QWidget *parent);
/* -------------------------- */
QGroupBox *filterParametersGroupBox;
QGroupBox *targetParametersGroupBox;
QGroupBox *enableDisableGroupBox;
QGroupBox * smoothingParametersGroupBox;
/* -------------------------- */
QGridLayout *fParamLayout;
QGridLayout *tParamLayout;
QGridLayout *eParamLayout;
QGridLayout *sParamLayout;
/* -------------------------- */
// Filter Parameters
QComboBox *filterType;
QSpinBox *filterOrder;
QLineEdit *freqLow;
QLineEdit *freqHigh;
QSpinBox *bufferSize;
QLabel *bufferSizeSuggest;
// Smoothing Parameters
QCheckBox *smoothingEnabled;
QSpinBox *smoothingSize;
// Target Parameters
QComboBox *targetPhase;
QLineEdit *targetPower;
QSpinBox *delay;
QSpinBox *lockoutTime;
// Enable/Disable Parameters
QSpinBox *nAtRequirement;
QCheckBox *enablePhase;
QCheckBox *enablePower;
QCheckBox *enable;
bool enabled;
// int loadFromXML(QDomElement &nt);
// void saveToXML(QDomDocument &doc, QDomElement &rootNode);
public slots:
void setFilterEnabled(bool);
void updateData(void);
signals:
void SendFSDataMessage(int message, char *data, int size);
};
class FeedbackTab : public QWidget
{
Q_OBJECT
public:
FeedbackTab (QWidget *parent);
int loadFromXML(QDomNode &feedbackConfNode);
void saveToXML(QDomDocument &doc, QDomElement &rootNode);
RippleFilter *rippleFilt;
SpatialFilter *spatialFilt;
PhaseFilter *phaseFilt;
/* For each type of filter, we have a checkbox to enable it and a button to launch
* the configuration GUI */
QCheckBox *rippleFilterEnabled;
QPushButton *setRippleFilterParams;
QCheckBox *spatialFilterEnabled;
QPushButton *setSpatialFilterParams;
QLabel *phaseFilterEnabled;
QPushButton *setPhaseFilterParams;
QCheckBox *gpFilterEnabled;
QPushButton *setGpFilterParams;
QLabel *digOutGateLabel;
QSpinBox *digOutGatePort;
QLabel *rippleStatus;
QLabel *spatialStatus;
QLabel *thetaStatus;
QLabel *phaseStatus;
//QLabel *latencyStatus;
QGroupBox *statusGroupBox;
QPushButton *resetFeedbackButton;
QPushButton *startFeedbackButton;
QPushButton *stopFeedbackButton;
public slots:
void updateStimulatorStatus(bool stimReady);
//void updateActiveAOut(int aOutIndex, int aOut1Mode, int aOut2Mode);
void setFeedbackEnabled(void);
void updateRippleStatus(QString);
void updateSpatialStatus(QString);
void updateThetaStatus(QString);
void updatePhaseStatus(QString);
void updateDigOutGate(int);
void updateAllFilters(void);
//void updateLatencyStatus(QString);
//void updateLatencyPortA(int);
//void updateLatencyPortB(int);
private slots:
void showRippleFilter(void);
void showSpatialFilter(void);
void showPhaseFilter(void);
//void showLatencyTest(void);
void checkRealtimeStatus(void);
void updateRealtimeStatus(char *s);
private:
bool stimulatorReady;
bool aOutReady;
//LatencyTest *latencyTest;
signals:
void SendFSDataMessage(int message, char *data, int size);
protected:
};
#endif