-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZombieHHChannel.cpp
487 lines (423 loc) · 14.9 KB
/
ZombieHHChannel.cpp
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
481
482
483
484
485
486
487
/**********************************************************************
** This program is part of 'MOOSE', the
** Messaging Object Oriented Simulation Environment.
** Copyright (C) 2003-2007 Upinder S. Bhalla. and NCBS
** It is made available under the terms of the
** GNU Lesser General Public License version 2.1
** See the file COPYING.LIB for the full notice.
**********************************************************************/
#include "ZombieHHChannel.h"
const Cinfo* ZombieHHChannel::initCinfo()
{
/////////////////////////////////////////////////////////////////////
// Shared messages
/////////////////////////////////////////////////////////////////////
static DestFinfo process(
"process",
"Handles process call",
new ProcOpFunc< ZombieHHChannel >( &ZombieHHChannel::process ) );
static DestFinfo reinit(
"reinit",
"Handles reinit call",
new ProcOpFunc< ZombieHHChannel >( &ZombieHHChannel::reinit ) );
static Finfo* processShared[] =
{
&process, &reinit
};
static SharedFinfo proc(
"proc",
"This is a shared message to receive Process message from the"
"scheduler. The first entry is a MsgDest for the Process "
"operation. It has a single argument, ProcInfo, which "
"holds lots of information about current time, thread, dt and"
"so on.\n The second entry is a MsgDest for the Reinit "
"operation. It also uses ProcInfo.",
processShared, sizeof( processShared ) / sizeof( Finfo* )
);
///////////////////////////////////////////////////////
// Field definitions
///////////////////////////////////////////////////////
static ElementValueFinfo< ZombieHHChannel, double > Gbar( "Gbar",
"Maximal channel conductance",
&ZombieHHChannel::setGbar,
&ZombieHHChannel::getGbar
);
static ElementValueFinfo< ZombieHHChannel, double > Ek( "Ek",
"Reversal potential of channel",
&ZombieHHChannel::setEk,
&ZombieHHChannel::getEk
);
static ElementValueFinfo< ZombieHHChannel, double > Gk( "Gk",
"Channel conductance variable",
&ZombieHHChannel::setGk,
&ZombieHHChannel::getGk
);
static ReadOnlyElementValueFinfo< ZombieHHChannel, double > Ik( "Ik",
"Channel current variable",
&ZombieHHChannel::getIk
);
static ElementValueFinfo< ZombieHHChannel, double > Xpower( "Xpower",
"Power for X gate",
&ZombieHHChannel::setXpower,
&ZombieHHChannel::getXpower
);
static ElementValueFinfo< ZombieHHChannel, double > Ypower( "Ypower",
"Power for Y gate",
&ZombieHHChannel::setYpower,
&ZombieHHChannel::getYpower
);
static ElementValueFinfo< ZombieHHChannel, double > Zpower( "Zpower",
"Power for Z gate",
&ZombieHHChannel::setZpower,
&ZombieHHChannel::getZpower
);
static ElementValueFinfo< ZombieHHChannel, int > instant( "instant",
"Bitmapped flag: bit 0 = Xgate, bit 1 = Ygate, bit 2 = Zgate"
"When true, specifies that the lookup table value should be"
"used directly as the state of the channel, rather than used"
"as a rate term for numerical integration for the state",
&ZombieHHChannel::setInstant,
&ZombieHHChannel::getInstant
);
static ElementValueFinfo< ZombieHHChannel, double > X( "X",
"State variable for X gate",
&ZombieHHChannel::setX,
&ZombieHHChannel::getX
);
static ElementValueFinfo< ZombieHHChannel, double > Y( "Y",
"State variable for Y gate",
&ZombieHHChannel::setY,
&ZombieHHChannel::getY
);
static ElementValueFinfo< ZombieHHChannel, double > Z( "Z",
"State variable for Y gate",
&ZombieHHChannel::setZ,
&ZombieHHChannel::getZ
);
static ValueFinfo< ZombieHHChannel, int > useConcentration(
"useConcentration",
"Flag: when true, use concentration message rather than Vm to"
"control Z gate",
&ZombieHHChannel::setUseConcentration,
&ZombieHHChannel::getUseConcentration
);
///////////////////////////////////////////////////////
// MsgDest definitions
///////////////////////////////////////////////////////
static DestFinfo concen(
"concen",
"Incoming message from Concen object to specific conc to use"
"in the Z gate calculations",
new OpFunc1< ZombieHHChannel, double >( &ZombieHHChannel::handleConc )
);
static DestFinfo createGate(
"createGate",
"Function to create specified gate."
"Argument: Gate type [X Y Z]",
new EpFunc1< ZombieHHChannel, string >( &ZombieHHChannel::createGate )
);
///////////////////////////////////////////////////////
// FieldElementFinfo definition for HHGates. Note that these are made
// with the deferCreate flag off, so that the HHGates are created
// right away even if they are empty.
// Assume only a single entry allocated in each gate.
///////////////////////////////////////////////////////
static FieldElementFinfo< ZombieHHChannel, HHGate > gateX( "gateX",
"Sets up HHGate X for channel",
HHGate::initCinfo(),
&ZombieHHChannel::getXgate,
&ZombieHHChannel::setNumGates,
&ZombieHHChannel::getNumXgates,
1
);
static FieldElementFinfo< ZombieHHChannel, HHGate > gateY( "gateY",
"Sets up HHGate Y for channel",
HHGate::initCinfo(),
&ZombieHHChannel::getYgate,
&ZombieHHChannel::setNumGates,
&ZombieHHChannel::getNumYgates,
1
);
static FieldElementFinfo< ZombieHHChannel, HHGate > gateZ( "gateZ",
"Sets up HHGate Z for channel",
HHGate::initCinfo(),
&ZombieHHChannel::getZgate,
&ZombieHHChannel::setNumGates,
&ZombieHHChannel::getNumZgates,
1
);
///////////////////////////////////////////////////////
static Finfo* zombieHHChannelFinfos[] =
{
&proc, // Shared
&Gbar, // Value
&Ek, // Value
&Gk, // Value
&Ik, // Value
&Xpower, // Value
&Ypower, // Value
&Zpower, // Value
&instant, // Value
&X, // Value
&Y, // Value
&Z, // Value
&useConcentration, // Value
&concen, // Dest
&createGate, // Dest
&gateX, // FieldElement
&gateY, // FieldElement
&gateZ // FieldElement
};
static string doc[] =
{
"Name", "ZombieHHChannel",
"Author", "Upinder S. Bhalla, 2007, NCBS",
"Description", "ZombieHHChannel: Hodgkin-Huxley type voltage-gated Ion channel. Something "
"like the old tabchannel from GENESIS, but also presents "
"a similar interface as hhchan from GENESIS. ",
};
/*
* ZombieHHChannel derives directly from Neutral, unlike the regular
* HHChannel which derives from ChanBase. ChanBase handles fields like
* Gbar, Gk, Ek, Ik, which are common to HHChannel, SynChan, etc. On the
* other hand, these fields are stored separately for HHChannel and SynChan
* in the HSolver. Hence we cannot have a ZombieChanBase which does, for
* example:
* hsolve_->setGk( id, Gk );
* Instead we must have ZombieHHChannel and ZombieSynChan which do:
* hsolve_->setHHChannelGk( id, Gk );
* and:
* hsolve_->setSynChanGk( id, Gk );
* respectively.
*/
static Cinfo zombieHHChannelCinfo(
"ZombieHHChannel",
ChanBase::initCinfo(),
zombieHHChannelFinfos,
sizeof( zombieHHChannelFinfos )/sizeof(Finfo *),
new Dinfo< ZombieHHChannel >()
);
return &zombieHHChannelCinfo;
}
static const Cinfo* zombieHHChannelCinfo = ZombieHHChannel::initCinfo();
//////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////
// Constructor
///////////////////////////////////////////////////
ZombieHHChannel::ZombieHHChannel()
:
Xpower_( 0.0 ),
Ypower_( 0.0 ),
Zpower_( 0.0 ),
useConcentration_( 0 )
//~ xGate_( 0 ),
//~ yGate_( 0 ),
//~ zGate_( 0 )
{
;
}
void ZombieHHChannel::copyFields( Id chanId, HSolve* hsolve_ )
{
// Xpower_ = Field< double >::get( chanId, "Xpower" );
// Ypower_ = Field< double >::get( chanId, "Ypower" );
// Zpower_ = Field< double >::get( chanId, "Zpower" );
// useConcentration_ = Field< double >::get( chanId, "useConcentration" );
//
// hsolve_->setPowers( chanId, Xpower_, Ypower_, Zpower_ );
// hsolve_->setXparams(chanId,);
}
///////////////////////////////////////////////////
// Field function definitions
///////////////////////////////////////////////////
void ZombieHHChannel::setXpower( const Eref& e , double Xpower )
{
Xpower_ = Xpower;
hsolve_->setPowers( e.id(), Xpower_, Ypower_, Zpower_ );
}
double ZombieHHChannel::getXpower( const Eref& e ) const
{
return Xpower_;
}
void ZombieHHChannel::setYpower( const Eref& e , double Ypower )
{
Ypower_ = Ypower;
hsolve_->setPowers( e.id(), Xpower_, Ypower_, Zpower_ );
}
double ZombieHHChannel::getYpower( const Eref& e ) const
{
return Ypower_;
}
void ZombieHHChannel::setZpower( const Eref& e , double Zpower )
{
Zpower_ = Zpower;
hsolve_->setPowers( e.id(), Xpower_, Ypower_, Zpower_ );
}
double ZombieHHChannel::getZpower( const Eref& e ) const
{
return Zpower_;
}
void ZombieHHChannel::setGbar( const Eref& e , double Gbar )
{
// cout << "in ZombieHHChannel::setGbar( " << e.id().path() << ", " << Gbar << " )\n";
hsolve_->setHHChannelGbar( e.id(), Gbar );
}
double ZombieHHChannel::getGbar( const Eref& e ) const
{
return hsolve_->getHHChannelGbar( e.id() );
}
void ZombieHHChannel::setGk( const Eref& e , double Gk )
{
hsolve_->setGk( e.id(), Gk );
}
double ZombieHHChannel::getGk( const Eref& e ) const
{
return hsolve_->getGk( e.id() );
}
void ZombieHHChannel::setEk( const Eref& e , double Ek )
{
hsolve_->setEk( e.id(), Ek );
}
double ZombieHHChannel::getEk( const Eref& e ) const
{
return hsolve_->getEk( e.id() );
}
double ZombieHHChannel::getIk( const Eref& e ) const
{
return hsolve_->getIk( e.id() );
}
void ZombieHHChannel::setInstant( const Eref& e , int instant )
{
hsolve_->setInstant( e.id(), instant );
}
int ZombieHHChannel::getInstant( const Eref& e ) const
{
return hsolve_->getInstant( e.id() );
}
void ZombieHHChannel::setX( const Eref& e , double X )
{
hsolve_->setX( e.id(), X );
}
double ZombieHHChannel::getX( const Eref& e ) const
{
return hsolve_->getX( e.id() );
}
void ZombieHHChannel::setY( const Eref& e , double Y )
{
hsolve_->setY( e.id(), Y );
}
double ZombieHHChannel::getY( const Eref& e ) const
{
return hsolve_->getY( e.id() );
}
void ZombieHHChannel::setZ( const Eref& e , double Z )
{
hsolve_->setZ( e.id(), Z );
}
double ZombieHHChannel::getZ( const Eref& e ) const
{
return hsolve_->getZ( e.id() );
}
void ZombieHHChannel::setUseConcentration( int value )
{
cerr << "Error: HSolve::setUseConcentration(): Cannot change "
"'useConcentration' once HSolve has been setup.\n";
}
int ZombieHHChannel::getUseConcentration() const
{
return useConcentration_;
}
///////////////////////////////////////////////////
// Dest function definitions
///////////////////////////////////////////////////
void ZombieHHChannel::process( const Eref& e, ProcPtr info )
{
;
}
void ZombieHHChannel::reinit( const Eref& er, ProcPtr info )
{
;
}
void ZombieHHChannel::handleConc( double conc )
{
;
}
void ZombieHHChannel::createGate(const Eref& e, string name)
{
;
}
///////////////////////////////////////////////////
// HHGate functions
///////////////////////////////////////////////////
HHGate* ZombieHHChannel::getXgate( unsigned int i )
{
return NULL;
}
HHGate* ZombieHHChannel::getYgate( unsigned int i )
{
return NULL;
}
HHGate* ZombieHHChannel::getZgate( unsigned int i )
{
return NULL;
}
void ZombieHHChannel::setNumGates(unsigned int num)
{
;
}
unsigned int ZombieHHChannel::getNumXgates() const
{
return -1;
}
unsigned int ZombieHHChannel::getNumYgates() const
{
return -1;
}
unsigned int ZombieHHChannel::getNumZgates() const
{
return -1;
}
//////////////////////////////////////////////////////////////
// Zombie conversion functions.
//////////////////////////////////////////////////////////////
// static func
void ZombieHHChannel::zombify( Element* solver, Element* orig )
{
/*
// Delete "process" msg.
static const Finfo* procDest = HHChannel::initCinfo()->findFinfo( "process");
assert( procDest );
const DestFinfo* df = dynamic_cast< const DestFinfo* >( procDest );
assert( df );
ObjId mid = orig->findCaller( df->getFid() );
if ( ! mid.bad() )
Msg::deleteMsg( mid );
// NOTE: the following line can be uncommented to remove messages
// lying within the realm of HSolve. But HSolve will need to
// maintain a datastructure for putting back the messages at
// unzombify.
dump("ZombieHHChannel::zombify() is not tested yet.", "WARN");
HSolve::deleteIncomingMessages(orig, "concen");
HSolve::deleteIncomingMessages(orig, "Vm");
*/
Eref oer( orig, 0 );
Eref ser( solver, 0 );
ZombieHHChannel* zd = new ZombieHHChannel();
HSolve* sd = reinterpret_cast< HSolve* >( ser.data() );
zd->hsolve_ = sd;
zd->copyFields( oer.id(), sd );
orig->zombieSwap( zombieHHChannelCinfo);
}
// static func
void ZombieHHChannel::unzombify( Element* zombie )
{
SIMPLE_ASSERT_MSG(0, "Not implemented yet.");
/* fixme: Element is an abstract class, it can not instantiated. Need to
* write a new Class e.g. Element1 which can call Element constructor.
*/
#if 0
Element temp( zombie->id(), zombie->cinfo(), zombie->cinfo()->name() );
Eref zer( &temp, 0 );
Eref oer( zombie, 0 );
zombie->zombieSwap( HHChannel::initCinfo());
#endif
}