/***************************************************************************
* InternalSpike.h *
* ------------------- *
* copyright : (C) 2009 by Jesus Garrido and Richard Carrillo *
* email : jgarrido@atc.ugr.es *
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef INTERNALSPIKE_H_
#define INTERNALSPIKE_H_
/*!
* \file InternalSpike.h
*
* \author Jesus Garrido
* \author Richard Carrido
* \date August 2008
*
* This file declares a class which abstracts a neural network internal spike.
*/
#include <iostream>
#include "./Spike.h"
using namespace std;
class Neuron;
class Simulation;
/*!
* \class InternalSpike
*
* \brief Neural network internal spike.
*
* This class abstract the concept of spike. An internal spike is an event generated by the own cell
* without external excitation.
*
* \author Jesus Garrido
* \author Richard Carrillo
* \date November 2008
*/
class InternalSpike: public Spike{
public:
/*!
* \brief Default constructor.
*
* It creates and initializes a new spike object.
*/
InternalSpike();
/*!
* \brief Constructor with parameters.
*
* It creates and initializes a new spike with the parameters.
*
* \param NewTime Time of the new spike.
* \param NewSource Source neuron of the spike.
*/
InternalSpike(double NewTime, Neuron * NewSource);
/*!
* \brief Class destructor.
*
* It destroies an object of this class.
*/
~InternalSpike();
/*!
* \brief It process an event in the simulation with the option of real time available.
*
* It process an event in the simulation with the option of real time available.
*
* \param CurrentSimulation The simulation object where the event is working.
* \param RealTimeRestriction watchdog variable executed in a parallel OpenMP thread that
* control the consumed time in each slot.
*/
void ProcessEvent(Simulation * CurrentSimulation, int RealTimeRestriction);
/*!
* \brief It process an event in the simulation without the option of real time available.
*
* It process an event in the simulation without the option of real time available.
*
* \param CurrentSimulation The simulation object where the event is working.
*/
void ProcessEvent(Simulation * CurrentSimulation);
/*!
* \brief this method print the event type.
*
* This method print the event type..
*/
virtual void PrintType();
};
#endif /*INTERNALSPIKE_H_*/