MOOSE - Multiscale Object Oriented Simulation Environment
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Leakage.h
Go to the documentation of this file.
1 // Leakage.h ---
2 
3 //
4 // Filename: Leakage.h
5 // Description:
6 // Author: subhasis ray
7 // Maintainer:
8 // Created: Mon Aug 3 02:22:58 2009 (+0530)
9 // Version:
10 // Last-Updated: Mon Aug 3 03:07:21 2009 (+0530)
11 // By: subhasis ray
12 // Update #: 18
13 // URL:
14 // Keywords:
15 // Compatibility:
16 //
17 //
18 
19 // Commentary: Reimplementation of leakage class in GENESIS
20 //
21 //
22 //
23 //
24 
25 // Change log:
26 //
27 // 2014-05-23: Subha - ported to async13 branch
28 //
29 //
30 // This program is free software; you can redistribute it and/or
31 // modify it under the terms of the GNU General Public License as
32 // published by the Free Software Foundation; either version 3, or
33 // (at your option) any later version.
34 //
35 // This program is distributed in the hope that it will be useful,
36 // but WITHOUT ANY WARRANTY; without even the implied warranty of
37 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
38 // General Public License for more details.
39 //
40 // You should have received a copy of the GNU General Public License
41 // along with this program; see the file COPYING. If not, write to
42 // the Free Software Foundation, Inc., 51 Franklin Street, Fifth
43 // Floor, Boston, MA 02110-1301, USA.
44 //
45 //
46 
47 // Code:
48 
49 #ifndef LEAKAGE_H_
50 #define LEAKAGE_H_
51 
52 class Leakage: public ChanCommon
53 {
54  public:
55  Leakage();
56  ~Leakage();
57  void vProcess( const Eref & e, ProcPtr p );
58  void vReinit( const Eref & e, ProcPtr p );
59  void vSetGbar( const Eref & e, double gbar );
60 
61  static const Cinfo * initCinfo();
62 };
63 
64 #endif /* !LEAKAGE_H_ */
65 
66 
67 
68 //
69 // Leakage.h ends here
void vSetGbar(const Eref &e, double gbar)
Definition: Leakage.cpp:103
void vReinit(const Eref &e, ProcPtr p)
Definition: Leakage.cpp:96
Leakage()
Definition: Leakage.cpp:78
~Leakage()
Definition: Leakage.cpp:83
Definition: Eref.h:26
void vProcess(const Eref &e, ProcPtr p)
Definition: Leakage.cpp:89
static const Cinfo * initCinfo()
Definition: Leakage.cpp:53
Definition: Cinfo.h:18