CARLsim  4.1.0
CARLsim: a GPU-accelerated SNN simulator
neuron_monitor.h
Go to the documentation of this file.
1 /* * Copyright (c) 2016 Regents of the University of California. All rights reserved.
2 *
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions
5 * are met:
6 *
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 *
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * 3. The names of its contributors may not be used to endorse or promote
15 * products derived from this software without specific prior written
16 * permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
22 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
30 * *********************************************************************************************** *
31 * CARLsim
32 * created by: (MDR) Micah Richert, (JN) Jayram M. Nageswaran
33 * maintained by:
34 * (MA) Mike Avery <averym@uci.edu>
35 * (MB) Michael Beyeler <mbeyeler@uci.edu>,
36 * (KDC) Kristofor Carlson <kdcarlso@uci.edu>
37 * (TSC) Ting-Shuo Chou <tingshuc@uci.edu>
38 * (HK) Hirak J Kashyap <kashyaph@uci.edu>
39 *
40 * CARLsim v1.0: JM, MDR
41 * CARLsim v2.0/v2.1/v2.2: JM, MDR, MA, MB, KDC
42 * CARLsim3: MB, KDC, TSC
43 * CARLsim4: TSC, HK
44 *
45 * CARLsim available from http://socsci.uci.edu/~jkrichma/CARLsim/
46 * Ver 05/24/2017
47 */
48 
49 #ifndef _NEURON_MON_H_
50 #define _NEURON_MON_H_
51 
52 #include <carlsim_datastructures.h> // NeuronMonMode
53 #include <vector> // std::vector
54 
55 class SNN; // forward declaration of SNN class
56 class NeuronMonitorCore; // forward declaration of implementation
57 
59  public:
66  NeuronMonitor(NeuronMonitorCore* neuronMonitorCorePtr);
67 
75 
76  void clear();
77  bool isRecording();
78  void startRecording();
79  void stopRecording();
80  void setLogFile(const std::string& logFileName);
81  void print();
82 
83  private:
85  NeuronMonitorCore* neuronMonitorCorePtr_;
86 
87 };
88 #endif
NeuronMonitor::~NeuronMonitor
~NeuronMonitor()
NeuronMonitor destructor.
Definition: neuron_monitor.cpp:64
carlsim_datastructures.h
NeuronMonitor::isRecording
bool isRecording()
Definition: neuron_monitor.cpp:75
NeuronMonitor::clear
void clear()
Definition: neuron_monitor.cpp:68
NeuronMonitor::stopRecording
void stopRecording()
Definition: neuron_monitor.cpp:86
NeuronMonitorCore
Definition: neuron_monitor_core.h:58
NeuronMonitor::setLogFile
void setLogFile(const std::string &logFileName)
Definition: neuron_monitor.cpp:93
NeuronMonitor::NeuronMonitor
NeuronMonitor(NeuronMonitorCore *neuronMonitorCorePtr)
NeuronMonitor constructor.
Definition: neuron_monitor.cpp:59
NeuronMonitor::print
void print()
Definition: neuron_monitor.cpp:117
NeuronMonitor
Definition: neuron_monitor.h:58
SNN
Contains all of CARLsim's core functionality.
Definition: snn.h:114
NeuronMonitor::startRecording
void startRecording()
Definition: neuron_monitor.cpp:79