| 1 |
/** @file |
| 2 |
* $Source: /repository/event/Algorithm.cpp,v $ |
| 3 |
* $Id: Algorithm.cpp,v 1.1 2008-01-11 17:14:20 messineo Exp $ |
| 4 |
* $Author: messineo $ |
| 5 |
* |
| 6 |
* Implementation of the default functions of the Algorithm class. |
| 7 |
*/ |
| 8 |
|
| 9 |
#include "Algorithm.h" |
| 10 |
////#include <log4cxx/logger.h> |
| 11 |
using namespace pamela; |
| 12 |
|
| 13 |
//marco |
| 14 |
////static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.Algorithm")); |
| 15 |
|
| 16 |
/** |
| 17 |
* Constructor. Builds an algorithm that processes the events of a certain |
| 18 |
* type. |
| 19 |
*/ |
| 20 |
Algorithm::Algorithm(const PacketType* t, std::string name): |
| 21 |
type(t), AlgorithmName(name) { |
| 22 |
//marco |
| 23 |
// // logger->debug(_T("Constructor")); |
| 24 |
} |
| 25 |
|
| 26 |
ClassImp(Algorithm) |