/** @file * $Source: /home/cvspamela/yoda/event/Algorithm.cpp,v $ * $Id: Algorithm.cpp,v 1.7 2004/04/28 09:01:27 nagni Exp $ * $Author: nagni $ * * Implementation of the default functions of the Algorithm class. */ #include #include "Algorithm.h" using namespace pamela; static log4cpp::Category& cat = log4cpp::Category::getInstance("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) { cat << log4cpp::Priority::DEBUG << "Constructor" << "\n " << log4cpp::CategoryStream::ENDLINE; } ClassImp(Algorithm)