/** @file * $Source: /home/cvsmanager/yoda/event/Algorithm.cpp,v $ * $Id: Algorithm.cpp,v 2.0 2004/09/21 20:49:57 kusanagi Exp $ * $Author: kusanagi $ * * Implementation of the default functions of the Algorithm class. */ #include "Algorithm.h" #include using namespace pamela; 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) { logger->debug(_T("Constructor")); } ClassImp(Algorithm)