/** @file * $Source: /afs/ba.infn.it/user/pamela/src/CVS/chewbacca/event/Algorithm.cpp,v $ * $Id: Algorithm.cpp,v 1.1.1.1 2008/09/23 07:19:49 mocchiut Exp $ * $Author: mocchiut $ * * 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 pamela::PacketType* t, std::string name): type(t), AlgorithmName(name) { //marco // // logger->debug(_T("Constructor")); } ClassImp(Algorithm)