/** @file * $Source: /repository/event/Algorithm.cpp,v $ * $Id: Algorithm.cpp,v 1.1 2008-01-11 17:14:20 messineo Exp $ * $Author: messineo $ * * Implementation of the default functions of the Algorithm class. */ #include "Algorithm.h" ////#include using namespace pamela; //marco ////static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.Algorithm")); /** * Constructor. Builds an algorithm that processes the events of a certain * type. */ Algorithm::Algorithm(const PacketType* t, std::string name): type(t), AlgorithmName(name) { //marco // // logger->debug(_T("Constructor")); } ClassImp(Algorithm)