/***************************************************************************
* SynchronizeActivityEvent.h *
* ------------------- *
* copyright : (C) 2014 by Francisco Naveros *
* email : fnaveros@.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 SYNCHRONIZEACTIVITYEVENT_H_
#define SYNCHRONIZEACTIVITYEVENT_H_
/*!
* \file SynchronizeActivityEvent.h
*
* \author Francisco Naveros
* \date May 2014
*
* This file declares a class which abstracts a event which synchronizes the activity between the
* different OpenMP queues.
*/
#include <iostream>
#include "./Event.h"
using namespace std;
class Simulation;
/*!
* \class SynchronizeActivityEvent
*
* \brief This event synchronizes the activity between the different OpenMP queues.
*
* This class abstract the concept of an event which synchronizes the activity between the different OpenMP queues.
*
* \author Francisco Naveros
* \dateMay 2014
*/
class SynchronizeActivityEvent: public Event{
public:
/*!
* \brief Constructor with parameters.
*
* It creates and initializes a new event with the parameters.
*
* \param NewTime Time of the new event.
* \param CurrentSimulation The simulation object where the event is working.
*/
SynchronizeActivityEvent(double NewTime, Simulation * CurrentSimulation);
/*!
* \brief Class destructor.
*
* It destroies an object of this class.
*/
~SynchronizeActivityEvent();
/*!
* \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.
*/
virtual 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.
*/
virtual void ProcessEvent(Simulation * CurrentSimulation);
/*!
* \brief this method print the event type.
*
* This method print the event type..
*/
virtual void PrintType();
/*!
* \brief The event queue uses this preference variable to sort the events with the same time stamp.
*
* The event queue uses this preference variable to sort the events with the same time stamp.
*/
virtual enum EventPriority ProcessingPriority();
};
#endif /*SYNCHRONIZEACTIVITYEVENT_H_*/