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