-
Notifications
You must be signed in to change notification settings - Fork 7
/
EL_experiment.h
480 lines (410 loc) · 12.7 KB
/
EL_experiment.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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
/***************************************************************************
** **
** This file is part of SpineCreator, an easy to use GUI for **
** describing spiking neural network models. **
** Copyright (C) 2013-2014 Alex Cope, Paul Richmond, Seb James **
** **
** This program is free software: you can redistribute it and/or modify **
** it under the terms of the GNU General Public License as published by **
** the Free Software Foundation, either version 3 of the License, or **
** (at your option) any later version. **
** **
** This program is distributed in the hope that it will be useful, **
** but WITHOUT ANY WARRANTY; without even the implied warranty of **
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the **
** GNU General Public License for more details. **
** **
** You should have received a copy of the GNU General Public License **
** along with this program. If not, see http://www.gnu.org/licenses/. **
** **
****************************************************************************
** Author: Alex Cope **
** Website/Contact: http://bimpa.group.shef.ac.uk/ **
****************************************************************************/
#ifndef EXPERIMENT_H
#define EXPERIMENT_H
#include "globalHeader.h"
#include "CL_classes.h"
#include "SC_viewELexptpanelhandler.h"
#include "SC_logged_data.h"
class exptBox : public QFrame
{
Q_OBJECT
public:
exptBox( QWidget *parent = 0);
signals:
void clicked();
protected:
void mouseReleaseEvent ( QMouseEvent * ) ;
};
enum exptInType
{
constant,
arrayConstant,
timevarying,
arrayTimevarying,
external,
spikeList
};
class exptInLookup
{
public:
static QString toString(exptInType val) {
if (val == constant) return "Constant input";
if (val == arrayConstant) return "Array of constant inputs";
if (val == timevarying) return "Time varying input";
if (val == arrayTimevarying) return "Array of time varying inputs";
if (val == external) return "External input";
if (val == spikeList) return "Explicit spike list input";
return "error - unknown experiment type";
}
};
enum procedure
{
SingleRun,
RepeatRuns,
Tuning
};
enum rateDistributionTypes
{
Regular,
Poisson
};
enum solverType
{
ForwardEuler,
RungeKutta
};
struct simulatorSetup
{
QString simType;
float dt;
float duration;
solverType solver;
int solverOrder;
procedure exptProcedure;
};
struct externalObject
{
int port;
QString host;
QString commandline;
double timestep;
int size;
};
/*!
* \brief The exptInput class
* A class to represent the SpineML Experiment/ *Input tags.
* The class represents all Inputs, with the exptIntype
* variable switching between types. The params QVector
* holds the configuration data for the input, the
* structure of which varies between input types.
*/
class exptInput : QObject
{
Q_OBJECT
public:
exptInput() {
edit = true;
set=false;
eventport.name="spike";
portIsAnalog = false;
inType = constant;
params.push_back(0);
rate = false;currentIndex = 0;
name = "New Input";
rateDistribution = Poisson; \
rateSeed = 123; // If set to 0, then getTime() should be used to seed the rateDistribution
externalInput.size=1;
externalInput.port = 50091;
externalInput.host = "127.0.0.1";
externalInput.timestep = 0.0;
}
exptInput(exptInput *);
bool rate;
int currentIndex;
exptInType inType;
QVector <float> params;
externalObject externalInput;
QSharedPointer <ComponentInstance> target;
QString portName;
bool portIsAnalog;
bool edit;
bool set;
QString name;
rateDistributionTypes rateDistribution;
unsigned int rateSeed;
EventPort eventport;
QVBoxLayout * drawInput(nl_rootdata *data, viewELExptPanelHandler * handler);
void writeXML(QXmlStreamWriter *, projectObject * data);
void readXML(QXmlStreamReader * , projectObject *);
};
/*!
* \brief The exptOutput class
* A class to represent the SpineML Experiment/LogOutput tags.
* The class represents all Outputs, with network outputs
* slected using the isExternal bool.
*/
class exptOutput : QObject
{
Q_OBJECT
public:
exptOutput() {
edit = true;
set=false;
isExternal = false;
name = "New Output";
portIsAnalog = true;
indices="all";
externalOutput.size=1;
externalOutput.port = 50091;
externalOutput.host = "127.0.0.1";
externalOutput.timestep = 0.0;
startTime = 0;
endTime = 100000000;
}
exptOutput(exptOutput *);
QSharedPointer <ComponentInstance> source;
QString portName;
bool portIsAnalog;
bool edit;
bool set;
bool isExternal;
QString name;
externalObject externalOutput;
QString indices;
double startTime;
double endTime;
QVBoxLayout * drawOutput(nl_rootdata *data, viewELExptPanelHandler * handler);
void writeXML(QXmlStreamWriter *, projectObject * data);
void readXML(QXmlStreamReader * , projectObject *);
};
/*!
* An analog of the Lesion class for Generic Inputs. This maps to the
* GenericInputLesionType in the SpineML specification.
*/
class exptGenericInputLesion : QObject
{
Q_OBJECT
public: // methods
/*!
* Default constructor
*/
exptGenericInputLesion();
/*!
* Copy constructor
*/
exptGenericInputLesion (exptGenericInputLesion *);
/*!
* Construct from passed in pointer to a generic input.
*/
exptGenericInputLesion (QSharedPointer<genericInput> g);
/*!
* Re-draw the UI associated with this generic input lesion.
*/
QVBoxLayout* drawLesion (nl_rootdata* data, viewELExptPanelHandler* handler);
/*!
* Read the XML for this generic input lesion change from the
* experiment layer file.
*/
void readXML (QXmlStreamReader* reader, projectObject* pobj);
/*!
* Write out the XML for this generic input lesion change into the
* experiment layer file.
*/
void writeXML (QXmlStreamWriter* writer, projectObject*);
public: // attributes
/*!
* Determined from the src, src_port, dst_population and dst
* attributes in the GenericInputLesion
*/
QSharedPointer<genericInput> gi;
/*!
* Is the UI for this generic input lesion in "edit mode" or not?
* Determines how the UI is drawn.
*/
bool edit;
/*!
* Initialised false. Set to true when @see gi points to a
* genericInput.
*/
bool set;
/*
* Nice to have here would be bool searchPopulation, bool
* searchWeightUpdate and bool searchPostSynapse, which would come
* from a per-model or per-experiment setting. This would allow
* the drop down of candidate generic inputs to be smaller and
* more manageable. Haven't time to do this now.
*/
private: // methods
/*!
* Draw the lesion UI in "edit" mode. Called by @see drawLesion.
*
* @param elementList A list of the available generic inputs which
* could be lesioned.
*
* @param layout A QVBoxLayout, pre-allocated, in which the UI is
* to be laid out.
*
* @param handler For connecting slots in this UI.
*
* @return the layout.
*/
QVBoxLayout* drawLesionEditMode (const QStringList& elementList,
QVBoxLayout* layout,
viewELExptPanelHandler* handler);
/*!
* Draw the lesion UI in non-edit or "view" mode. Called by @see
* drawLesion.
*
* @param layout A QVBoxLayout, pre-allocated, in which the UI is
* to be laid out.
*
* @param handler For connecting slots in this UI.
*
* @return the layout.
*/
QVBoxLayout* drawLesionViewMode (QVBoxLayout* layout,
viewELExptPanelHandler* handler);
};
/*!
* Forward declaration - need access to experiment inside an
* exptLesion.
*/
class experiment;
/*!
* Currently this is specifically a projection lesion. I've proposed a
* GenericInputLesion in the SpineML spec, which derives from Lesion
* and adds src port and dst port names.
*/
class exptLesion : QObject
{
Q_OBJECT
public:
/*!
* \brief exptLesion::exptLesion copy constructor.
*
* Create a copy of an existing Lesion
*/
exptLesion(exptLesion *);
/*!
* Construct with a parent experiment.
*/
exptLesion(experiment* e) {
this->edit = true;
this->set = false;
this->exptParent = e;
}
/*!
* The projection and port are runtime determined from the
* src_population and dst_population specified in the xml.
*/
//@{
QSharedPointer<projection> proj;
Port* port;
//@}
bool edit;
bool set;
/*!
* The parent experiment in which this exptLesion exists.
*/
experiment* exptParent;
/*!
* A vector of generic input lesions which are associated with
* this projection lesion.
*/
QVector<exptGenericInputLesion*> assocGenericInputs;
/*!
* Requires this->proj to be set. Fills genericInputs with any
* generic inputs that are connected to the postsynapse or
* weightupdate components of this projection.
*/
void setAssocGenericInputs (void);
QVBoxLayout* drawLesion (nl_rootdata* data, viewELExptPanelHandler* handler);
void writeXML (QXmlStreamWriter *, projectObject *);
void readXML (QXmlStreamReader * , projectObject *);
};
class exptChangeProp : QObject
{
Q_OBJECT
public:
exptChangeProp() {edit = true; set=false; par = NULL; name = "New changed property";}
exptChangeProp(exptChangeProp *);
ParameterInstance * par;
QSharedPointer <ComponentInstance> component;
bool edit;
bool set;
QString name;
QVBoxLayout * drawChangeProp(nl_rootdata *data, viewELExptPanelHandler * handler);
void writeXML(QXmlStreamWriter *, projectObject * data);
void readXML(QXmlStreamReader *);
};
/*!
* The experiment objects are stored in nl_rootdata::experiments
* (defined in SC_network_layer_rootdata.h) for the selected project
* and in projectObject::experimentList for deselected projects.
*/
class experiment : QObject
{
Q_OBJECT
public:
experiment();
experiment(experiment *);
~experiment();
simulatorSetup setup;
QVector < exptInput * > ins;
QVector < exptOutput * > outs;
QVector < exptChangeProp * > changes;
QVector < exptLesion * > lesions;
QVector < exptGenericInputLesion * > gilesions;
QString name;
QString description;
/*!
* A menu action for this experiment. Shows up in the Experiments menu.
*/
QAction* menuAction;
exptBox * getBox(viewELExptPanelHandler *);
void writeXML(QXmlStreamWriter *, projectObject *data);
void readXML(QXmlStreamReader * , projectObject *);
void purgeBadPointer(QSharedPointer <ComponentInstance>ptr);
void purgeBadPointer(QSharedPointer<Component>ptr, QSharedPointer<Component>newPtr);
void updateChanges(QSharedPointer <ComponentInstance> ptr);
/*!
* Set up the action for this experiment.
*/
QAction* action (int i);
bool selected;
void select(QVector < experiment * > *);
void deselect();
bool editing;
bool running;
bool subEdit;
QLabel * progressBar;
QToolButton * runButton;
private:
exptBox * currBoxPtr;
public slots:
void runDestroyed();
};
class NTableDelegate : public QStyledItemDelegate
{
Q_OBJECT
public:
NTableDelegate(QObject* parent);
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &, const QModelIndex &) const;
void setEditorData(QWidget *editor, const QModelIndex &index) const;
void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const;
void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &) const;
};
class TVGraph : public QWidget
{
Q_OBJECT
public:
TVGraph();
TVGraph(QVector <float>);
~TVGraph();
QVector <float> vals;
protected:
void paintEvent(QPaintEvent *);
};
#endif // EXPERIMENT_H