/** @file * $Source: /home/cvspamela/yoda/event/NullAlgorithm.cpp,v $ * $Id: NullAlgorithm.cpp,v 1.6 2004/03/16 10:18:28 nagni Exp $ * $Author: nagni $ * * Implementation of the default functions of the Algorithm class. */ #include "Algorithm.h" using namespace pamela; NullAlgorithm::NullAlgorithm(const PacketType *t): Algorithm(t, "NullAlgorithm") { } std::string NullAlgorithm::GetVersionInfo(void) const { return "$Header: /home/cvspamela/yoda/event/NullAlgorithm.cpp,v 1.6 2004/03/16 10:18:28 nagni Exp $\n"; } ClassImp(NullAlgorithm)