// Implementation of the PhysEndRunReader class. #define UINT unsigned int #define BYTE unsigned char #include #include extern "C" { #include #include "CRC.h" } #include #include "stdio.h" #include "ReaderAlgorithms.h" using namespace pamela; using namespace pamela::techmodel; static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.PhysEndRunReader")); /** * Constructor. */ PhysEndRunReader::PhysEndRunReader(void): TechmodelAlgorithm(PacketType::PhysEndRun, "TechmodelPhysEndRunReader") { logger->debug(_T("Constructor")); physEndRun = new PhysEndRunEvent(); } /** * Get a string with the version info of the algorithm. */ std::string PhysEndRunReader::GetVersionInfo(void) const { return "$Header: /home/cvsmanager/yoda/techmodel/PhysEndRunReader.cpp,v 2.1 2004/12/03 22:08:01 kusanagi Exp $\n"; } /** * Initialize the algorithm with a special run. This will initialize the * event reader routines for all packet types. */ void PhysEndRunReader::Init(PamelaRun *run) { SetInputStream(run); run->WriteSubPacket(this, &physEndRun, physEndRun->Class()); logger->debug(_T("Initialize")); } /** * Unpack the PhysEndRun event from an input file. */ void PhysEndRunReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ }